4
1
mirror of https://github.com/pfloos/quack synced 2024-06-18 11:15:30 +02:00
quack/qcaml-tools/Makefile

26 lines
368 B
Makefile
Raw Normal View History

2020-10-08 11:52:49 +02:00
# Frontend to dune.
.NOTPARALLEL:
TARGETS=quack_input \
2020-10-12 13:06:41 +02:00
quack_integrals \
GoDuck
2020-10-08 11:52:49 +02:00
2020-10-12 14:25:30 +02:00
.PHONY: default build install uninstall test clean
default: $(TARGETS)
mv GoDuck ../
2020-10-08 11:52:49 +02:00
%.exe: build
dune build $@
$(TARGETS): $(patsubst %, %.exe, $(TARGETS))
2020-10-10 11:36:02 +02:00
for i in $(TARGETS) ; do cp _build/default/$${i}.exe $$i ; done
2020-10-08 11:52:49 +02:00
build:
dune build
clean:
dune clean