Update figures Makefile structure

This commit is contained in:
Eric-Teunis de Boone 2022-08-24 16:25:20 +02:00
parent 02647699df
commit faf07ef6fd
6 changed files with 49 additions and 14 deletions

View file

@ -1,7 +1,13 @@
.PHONY: all dist dist-clean
all: dist
dist: sine_beacon.pdf ttl_beacon.pdf
dist: \
sine_beacon.pdf sine_beacon.png \
ttl_beacon.pdf ttl_beacon.png
dist-clean:
rm -v sine_beacon.*
rm -v ttl_beacon.*
sine_beacon.%: src/single_beacon.py
$< --periods 2 --with-rates sine $@
@ -9,7 +15,3 @@ sine_beacon.%: src/single_beacon.py
ttl_beacon.%: src/single_beacon.py
$< --periods 2 --with-rates ttl $@
dist-clean:
rm -v sine_beacon.*
rm -v ttl_beacon.*