aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJuan J. Martinez <jjm@usebox.net>2023-05-29 23:32:41 +0100
committerJuan J. Martinez <jjm@usebox.net>2023-05-29 23:32:41 +0100
commit2941ac6b8ecc1fd96b886219795f5d7e55bb85d8 (patch)
tree9786ef28b990199e353bea285d6d5ecdb0a45e31 /Makefile
downloadgold-mine-run-2941ac6b8ecc1fd96b886219795f5d7e55bb85d8.tar.gz
gold-mine-run-2941ac6b8ecc1fd96b886219795f5d7e55bb85d8.zip
Initial import
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile17
1 files changed, 17 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..0c23670
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,17 @@
+all:
+ #make -C tools
+ #make -C data
+ make -j -C src all
+
+run: all
+ dosbox -config dosbox.conf
+
+clean:
+ #make -C data clean
+ make -C src clean
+
+cleanall:
+ make -C src clean
+ #make -C tools clean
+
+.PHONY: all clean run