Skip to content

Commit

Permalink
Simplify userland Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaron O'Mullan committed Sep 3, 2013
1 parent 2e979df commit b9d2f5f
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions userland/makefile
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
ALLDIR=$(wildcard *)

all:
-@for file in $(ALLDIR); do make -C $$file; done; true
make -C "helloworld" all

clean:
-@for file in $(ALLDIR); do make -C $$file clean; done; true
make -C "helloworld" clean

0 comments on commit b9d2f5f

Please sign in to comment.