mirror of
https://github.com/pfloos/quack
synced 2025-01-08 20:33:30 +01:00
24 lines
373 B
Makefile
24 lines
373 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 $* ; do ln _build/default/$$i $${i%.exe} ; done
|
||
|
|
||
|
default: $(TARGETS)
|
||
|
|
||
|
build:
|
||
|
dune build
|
||
|
|
||
|
clean:
|
||
|
dune clean
|
||
|
|
||
|
|