4
1
mirror of https://github.com/pfloos/quack synced 2024-07-06 11:26:01 +02:00
quack/qcaml-tools/Makefile

24 lines
380 B
Makefile
Raw Normal View History

2020-10-08 11:52:49 +02:00
# Frontend to dune.
.NOTPARALLEL:
TARGETS=quack_input \
quack_integrals
.PHONY: default build install uninstall test clean
%.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
default: $(TARGETS)
build:
dune build
clean:
dune clean