mirror of
https://gitlab.science.ru.nl/mthesis-edeboone/m.internship-documentation.git
synced 2024-11-12 18:43:30 +01:00
20 lines
408 B
Makefile
20 lines
408 B
Makefile
.PHONY: all dist dist-clean
|
|
|
|
all: dist
|
|
dist: \
|
|
sine_beacon.pdf sine_beacon.png \
|
|
ttl_beacon.pdf ttl_beacon.png
|
|
|
|
dist-clean:
|
|
rm -v sine_beacon.*
|
|
rm -v ttl_beacon.*
|
|
|
|
beacon_spatial_time_difference_setup.pdf: src/beacon_spatial_time_difference_setup.py
|
|
$< $@
|
|
|
|
sine_beacon.%: src/single_beacon.py
|
|
$< --periods 2 --with-rates sine $@
|
|
|
|
ttl_beacon.%: src/single_beacon.py
|
|
$< --periods 2 --with-rates ttl $@
|
|
|