aboutsummaryrefslogtreecommitdiff
path: root/src/makefile
diff options
context:
space:
mode:
authorpacien2018-04-29 20:24:38 +0200
committerpacien2018-04-29 20:24:38 +0200
commit0647f37eebbefb8446fc8abfc533a23952fbb8be (patch)
treefc9d69f32bd6c04de27c3795f6d54ed150bd4958 /src/makefile
parent80d7f0f204aacefa768d34f6db30108cb430cede (diff)
downloadurm-0647f37eebbefb8446fc8abfc533a23952fbb8be.tar.gz
Move sources to dedicated directory
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