aboutsummaryrefslogtreecommitdiff
path: root/src/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/makefile')
-rw-r--r--src/makefile18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/makefile b/src/makefile
new file mode 100644
index 0000000..6aceab8
--- /dev/null
+++ b/src/makefile
@@ -0,0 +1,18 @@
1RESULT = urm
2LIBS = str
3PACKS = kaputt
4SOURCES = \
5 common.ml \
6 parser.mli parser.ml \
7 instptr.mli instptr.ml \
8 reg.mli reg.ml \
9 urm.mli urm.ml urm_test.ml \
10 eurm.mli eurm.ml eurm_test.ml \
11 main.ml
12
13OCAMLMAKEFILE = /usr/share/ocamlmakefile/OCamlMakefile
14include $(OCAMLMAKEFILE)
15
16test: nc
17 ./$(RESULT) run-tests
18