nppilot/Makefile

13 lines
137 B
Makefile
Raw Permalink Normal View History

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