inspektors/Makefile

11 lines
246 B
Makefile
Raw Normal View History

2018-01-20 22:57:28 +02:00
TARGETS = common robot base_station
2017-11-22 12:48:04 +02:00
2018-01-19 18:13:16 +02:00
all:
$(foreach var,$(TARGETS),cd $(var) && make && cd ..;)
2017-11-22 12:48:04 +02:00
2018-01-19 18:13:16 +02:00
debug: $(TARGETS)
$(foreach var,$(TARGETS),cd $(var) && make debug && cd ..;)
2017-11-22 12:48:04 +02:00
clean:
2018-01-19 18:13:16 +02:00
$(foreach var,$(TARGETS),cd $(var) && make clean && cd ..;)