Skip to content

Commit

Permalink
Makefile fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
keirf committed Oct 29, 2018
1 parent d72d809 commit 64b071a
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
include base/Rules.mk

SUBDIRS := base overscan systest inflate

SUBDIRS := base host_tools overscan systest inflate

.PHONY: all $(SUBDIRS)
all:
all: $(SUBDIRS)

host_tools overscan systest:
$(MAKE) -C $@ all

clean:: $(addsuffix clean,$(SUBDIRS))
%clean: %
$(MAKE) -C $< clean
clean::
@set -e; for subdir in $(SUBDIRS); do \
$(MAKE) -C $$subdir clean; \
done

0 comments on commit 64b071a

Please sign in to comment.