summaryrefslogtreecommitdiff
path: root/src/makefile
diff options
context:
space:
mode:
authorJohn Denker <jsd@av8n.com>2024-03-16 11:21:23 -0700
committerJohn Denker <jsd@av8n.com>2024-03-16 11:42:15 -0700
commit9852b855db2a65ea6eb5e877411634820214ddf0 (patch)
treec4c4504b34ef81d67891ed137ec2cfaabb4d6d04 /src/makefile
parent634d365a03cb0581a062cd3cf4db9ae69f1cde26 (diff)
initial setupHEADmaster
Diffstat (limited to 'src/makefile')
-rw-r--r--src/makefile16
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 > $@