diff options
Diffstat (limited to 'src/makefile')
-rw-r--r-- | src/makefile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/makefile b/src/makefile new file mode 100644 index 0000000..5ae971e --- /dev/null +++ b/src/makefile @@ -0,0 +1,16 @@ + + +all: + cmake --build bin + +clean: + cd bin; make -f Makefile clean + +shipme := $(shell cat sources.txt) makefile bin CMakeLists.txt sources.txt + +togo : ALWAYS + echo $(shipme:%=src/%) > $@ + +.PHONY: ALWAYS + +##tar -c --no-rec $(shipme) | gzip > $@ |