summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorPaweł Redman <pawel.redman@gmail.com>2016-12-20 23:19:39 +0100
committerPaweł Redman <pawel.redman@gmail.com>2016-12-20 23:19:39 +0100
commit69f1119fc0942b2ae1ed86621c165af0cc1ac38d (patch)
tree6dbe1add645450f2ae5e757f01fa22555361b49f /Makefile
parent6944cd2e56243a05a5765d48445f996325a712f6 (diff)
Add a Makefile and the first version of the human base.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..f19f408
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,10 @@
+PARTS := src/Human_Base.map
+OUT := analmango.map
+
+$(OUT): $(PARTS)
+ mapcat $^ -o $@
+
+clean:
+ rm $(OUT)
+
+.PHONY: clean