mirror of
https://gitlab.science.ru.nl/mthesis-edeboone/m.internship-documentation.git
synced 2024-11-13 19:03:36 +01:00
19 lines
267 B
Makefile
19 lines
267 B
Makefile
|
.PHONY: all dist dist-clean
|
||
|
|
||
|
|
||
|
all: dist
|
||
|
dist: \
|
||
|
reference-clock.pdf reference-clock.png \
|
||
|
wr-clocks.pdf wr-clocks.png
|
||
|
|
||
|
dist-clean:
|
||
|
rm -v reference-clock.*
|
||
|
rm -v wr-clocks.*
|
||
|
|
||
|
|
||
|
reference-clock.%: src/reference-clock.py
|
||
|
$< $@
|
||
|
|
||
|
wr-clocks.%: src/wr-clocks.py
|
||
|
$< $@
|