4
1
mirror of https://github.com/pfloos/quack synced 2024-06-22 21:22:20 +02:00
quack/qcaml-tools/Makefile

24 lines
380 B
Makefile

# Frontend to dune.
.NOTPARALLEL:
TARGETS=quack_input \
quack_integrals
.PHONY: default build install uninstall test clean
%.exe: build
dune build $@
$(TARGETS): $(patsubst %, %.exe, $(TARGETS))
for i in $(TARGETS) ; do cp _build/default/$${i}.exe $$i ; done
default: $(TARGETS)
build:
dune build
clean:
dune clean