inspektors/Makefile
2018-01-19 18:13:16 +02:00

11 lines
239 B
Makefile

TARGETS = robot base_station
all:
$(foreach var,$(TARGETS),cd $(var) && make && cd ..;)
debug: $(TARGETS)
$(foreach var,$(TARGETS),cd $(var) && make debug && cd ..;)
clean:
$(foreach var,$(TARGETS),cd $(var) && make clean && cd ..;)