summaryrefslogtreecommitdiff
path: root/src/makefile
blob: 5ae971e098f505da90c29a86ec41fa43e3538273 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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 > $@