aboutsummaryrefslogtreecommitdiffstats
path: root/docs/modules/ROOT/examples/spacewar/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'docs/modules/ROOT/examples/spacewar/Makefile')
-rw-r--r--docs/modules/ROOT/examples/spacewar/Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/docs/modules/ROOT/examples/spacewar/Makefile b/docs/modules/ROOT/examples/spacewar/Makefile
new file mode 100644
index 000000000..e425dfd55
--- /dev/null
+++ b/docs/modules/ROOT/examples/spacewar/Makefile
@@ -0,0 +1,12 @@
+SHELL=bash
+ACJOPTS=-verbose -nosymbols
+AJC=ajc
+
+.PHONY: demo debug
+
+demo:
+ $(AJC) $(ACJOPTS) @demo.lst
+
+debug:
+ $(AJC) $(ACJOPTS) @debug.lst
+