diff options
Diffstat (limited to 'src/makefile')
-rw-r--r-- | src/makefile | 18 |
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 @@ | |||
1 | RESULT = urm | ||
2 | LIBS = str | ||
3 | PACKS = kaputt | ||
4 | SOURCES = \ | ||
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 | |||
13 | OCAMLMAKEFILE = /usr/share/ocamlmakefile/OCamlMakefile | ||
14 | include $(OCAMLMAKEFILE) | ||
15 | |||
16 | test: nc | ||
17 | ./$(RESULT) run-tests | ||
18 | |||