-
erwan authored
For some reason, I believed that the source dir containing the main program need to be named bin for dune to work smoothly. But actually, it seems to work fine with src, so let's go for it.
erwan authoredFor some reason, I believed that the source dir containing the main program need to be named bin for dune to work smoothly. But actually, it seems to work fine with src, so let's go for it.
Makefile 121 B
all:
dune build sasa.exe
install:
dune build @install
clean:
rm -f *.cmxs sasa *.cmi *.o *.cmx *.pdf
dune clean