We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca44095 commit 4a4cda7Copy full SHA for 4a4cda7
Makefile
@@ -56,6 +56,8 @@ else
56
CFLAGS += -O3 -march=native
57
endif
58
59
+VERSION = $(shell cat VERSION)
60
+
61
install:
62
@mkdir -p $(includedir)
63
cp -a include/ecuda $(includedir)/ecuda
@@ -79,7 +81,7 @@ examples/% :: examples/%.cu
79
81
$(CXX) $(CXXFLAGS) obj/$@.cu.o $(LDLIBS) -o bin/$@
80
82
83
dist:
- tar zcvf ecuda-dist.tar.gz LICENSE.txt include/ecuda/*.hpp test/*.cu benchmarks/*.cu
84
+ tar zcvf ecuda-dist-${VERSION}.tar.gz LICENSE.txt Makefile MANIFEST doxygen.cfg include/ecuda/*.hpp test/*.cu benchmarks/*.cu examples/*.cu docs/*.html docs/*.css docs/*.dox docs/images/*.png
85
86
docs: FORCE
87
doxygen doxygen.cfg
VERSION
@@ -0,0 +1 @@
1
+1.0
0 commit comments