nppilot/Makefile
2014-01-05 19:30:59 +01:00

13 lines
137 B
Makefile

SUBDIRS = roverif rover
all: $(SUBDIRS:%=build-%)
clean: $(SUBDIRS:%=clean-%)
build-%:
$(MAKE) -C $*
clean-%:
$(MAKE) -C $* clean