9 lines
126 B
Makefile
9 lines
126 B
Makefile
.PHONY: all clean
|
|
|
|
all:
|
|
dune build marthe.exe
|
|
ln -sf _build/default/marthe.exe marthe
|
|
|
|
clean:
|
|
dune clean
|
|
rm -fr *~ marthe
|