Skip to content

Commit f37ccf5

Browse files
committed
feat: Remove release from Makefile. Use GitHub release instead.
1 parent b18c39f commit f37ccf5

1 file changed

Lines changed: 1 addition & 6 deletions

File tree

Makefile

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,13 @@ INC = -I .
1111
OPT_LEVEL = -O3
1212
CPPFLAGS = -std=c++11 -Wall -Wextra $(OPT_LEVEL)
1313

14-
.PHONY: all clean release
14+
.PHONY: all clean
1515

1616
all: test_base.out test_network.out
1717

1818
clean:
1919
rm -rf *.o *.out release
2020

21-
release:
22-
rm -rf release
23-
mkdir release
24-
zip -r release/CimNet-$(VERSION).zip cimnet docs examples test README.md LICENSE Makefile --exclude=*.out --exclude=*.run --exclude=*.py
25-
2621
test_base.out: test/test_base.cc $(HEADERS)
2722
$(CPP) test/test_base.cc -o test_base.out $(INC) $(CPPFLAGS)
2823
test_network.out: test/test_network.cc $(HEADERS)

0 commit comments

Comments
 (0)