inspektors/Makefile
2018-01-20 22:57:28 +02:00

11 lines
246 B
Makefile

TARGETS = common 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 ..;)