2022-08-24 15:35:56 +02:00
|
|
|
.PHONY: all dist dist-clean
|
|
|
|
|
|
|
|
all: dist
|
2022-08-24 16:25:20 +02:00
|
|
|
dist: \
|
|
|
|
sine_beacon.pdf sine_beacon.png \
|
2022-09-23 16:21:18 +02:00
|
|
|
ttl_beacon.pdf ttl_beacon.png \
|
|
|
|
field_singleleft_time.pdf field_singleleft_time.png \
|
|
|
|
field_singleleft_phase.pdf field_singleleft_phase.png \
|
|
|
|
field_singlecenter_time.pdf field_singlecenter_time.png \
|
2022-10-04 14:52:31 +02:00
|
|
|
field_singlecenter_phase.pdf field_singlecenter_phase.png \
|
|
|
|
antenna_setup_four.pdf antenna_setup_four.png \
|
|
|
|
antenna_setup_three.pdf antenna_setup_three.png
|
2022-08-24 16:25:20 +02:00
|
|
|
|
|
|
|
dist-clean:
|
|
|
|
rm -v sine_beacon.*
|
|
|
|
rm -v ttl_beacon.*
|
2022-09-23 16:21:18 +02:00
|
|
|
rm -v field_singleleft_time.*
|
|
|
|
rm -v field_singleleft_phase.*
|
|
|
|
rm -v field_singlecenter_time.*
|
|
|
|
rm -v field_singlecenter_phase.*
|
2022-08-24 15:35:56 +02:00
|
|
|
|
2022-08-31 14:31:51 +02:00
|
|
|
beacon_spatial_time_difference_setup.pdf: src/beacon_spatial_time_difference_setup.py
|
|
|
|
$< $@
|
|
|
|
|
2022-08-24 15:35:56 +02:00
|
|
|
sine_beacon.%: src/single_beacon.py
|
|
|
|
$< --periods 2 --with-rates sine $@
|
|
|
|
|
|
|
|
ttl_beacon.%: src/single_beacon.py
|
|
|
|
$< --periods 2 --with-rates ttl $@
|
|
|
|
|
2022-09-23 16:21:18 +02:00
|
|
|
field_singleleft_time.%: src/beacon_field.py
|
|
|
|
$< --time $@ single-left
|
|
|
|
field_singleleft_phase.%: src/beacon_field.py
|
|
|
|
$< --phase $@ single-left
|
|
|
|
|
|
|
|
field_singlecenter_time.%: src/beacon_field.py
|
|
|
|
$< --time $@ single-center
|
|
|
|
field_singlecenter_phase.%: src/beacon_field.py
|
|
|
|
$< --phase $@ single-center
|
2022-10-04 14:52:31 +02:00
|
|
|
|
|
|
|
antenna_setup_four.%: src/four_antenna_setup.py
|
|
|
|
$< $@
|
|
|
|
|
|
|
|
antenna_setup_three.%: src/four_antenna_setup.py
|
|
|
|
$< --no-extra $@
|