4
1
mirror of https://github.com/pfloos/quack synced 2024-06-29 08:24:53 +02:00

qcaml makefile

This commit is contained in:
Pierre-Francois Loos 2020-10-10 11:36:02 +02:00
parent 530f85c7a8
commit b3d89ac0f2
2 changed files with 2 additions and 1 deletions

View File

@ -10,7 +10,7 @@ TARGETS=quack_input \
dune build $@ dune build $@
$(TARGETS): $(patsubst %, %.exe, $(TARGETS)) $(TARGETS): $(patsubst %, %.exe, $(TARGETS))
for i in $* ; do ln _build/default/$$i $${i%.exe} ; done for i in $(TARGETS) ; do cp _build/default/$${i}.exe $$i ; done
default: $(TARGETS) default: $(TARGETS)

View File

@ -4,6 +4,7 @@
quack_integrals quack_integrals
) )
(libraries (libraries
qcaml.common
qcaml qcaml
) )
) )