18 lines
261 B
Makefile
18 lines
261 B
Makefile
all: pieuvre
|
|
|
|
pieuvre: *.ml *.mll *.mly
|
|
ocamlbuild -yaccflag -v -lib unix main.native
|
|
ln -f -s main.native pieuvre
|
|
chmod +x pieuvre
|
|
|
|
main.byte:
|
|
ocamlbuild -yaccflag -v main.byte
|
|
|
|
byte: main.byte
|
|
|
|
.PHONY: clean test
|
|
|
|
clean:
|
|
ocamlbuild -clean
|
|
rm -f pieuvre
|