16 lines
267 B
Makefile
16 lines
267 B
Makefile
all:
|
|
ocamlbuild -yaccflag -v -lib unix main.native #on dit de fabriquer main.native
|
|
ln -f -s main.native fouine
|
|
chmod +x fouine
|
|
|
|
byte:
|
|
ocamlbuild -yaccflag -v main.byte
|
|
|
|
clean:
|
|
ocamlbuild -clean
|
|
rm -f fouine
|
|
|
|
test: all
|
|
tests/tests.sh
|
|
.PHONY: all clean test
|