diff options
author | Alex AUVOLAT <alex.auvolat@ens.fr> | 2014-01-08 18:19:21 +0100 |
---|---|---|
committer | Alex AUVOLAT <alex.auvolat@ens.fr> | 2014-01-08 18:19:21 +0100 |
commit | 1f228ce77e8a71475930b433fb2c72521203aa99 (patch) | |
tree | 8a9db2a92abb2265905b737bc935f6b299f1fb95 /asm/Makefile | |
parent | fa2e69bf68346d653d194d863c019674ea0fd7e2 (diff) | |
download | SystDigit-Projet-1f228ce77e8a71475930b433fb2c72521203aa99.tar.gz SystDigit-Projet-1f228ce77e8a71475930b433fb2c72521203aa99.zip |
Petites modifications
Diffstat (limited to 'asm/Makefile')
-rw-r--r-- | asm/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/asm/Makefile b/asm/Makefile new file mode 100644 index 0000000..8ac2004 --- /dev/null +++ b/asm/Makefile @@ -0,0 +1,10 @@ + +all: asm + +asm: assembler.ml asm.ml asmlex.mll asmpars.mly + ocamlbuild assembler.native + mv assembler.native asm + +clean: + rm asm + rm -r _build |