diff options
author | pacien | 2018-04-29 20:24:38 +0200 |
---|---|---|
committer | pacien | 2018-04-29 20:24:38 +0200 |
commit | 0647f37eebbefb8446fc8abfc533a23952fbb8be (patch) | |
tree | fc9d69f32bd6c04de27c3795f6d54ed150bd4958 /src/makefile | |
parent | 80d7f0f204aacefa768d34f6db30108cb430cede (diff) | |
download | urm-0647f37eebbefb8446fc8abfc533a23952fbb8be.tar.gz |
Move sources to dedicated directory
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 | |||