10 lines
126 B
Makefile
10 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
|