move ml prototype in a subdir

This commit is contained in:
Quentin Carbonneaux 2015-07-10 03:16:11 -04:00
parent c7ab830c22
commit 037c716b65
9 changed files with 0 additions and 0 deletions

13
proto/Makefile Normal file
View file

@ -0,0 +1,13 @@
.PHONY: all test clean
all: bak
bak: elf.ml lo2.ml
ocamlc -g -o bak elf.ml lo2.ml
test: bak
@./bak test
@cc -O2 -o t.out tmain.c t.o && ./t.out
clean:
rm -f bak *.out *.o *.cm[io]