Skip to content

Commit

Permalink
Add a top level Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
zxombie committed Nov 28, 2012
1 parent 32b92c1 commit 8026b9e
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions Makefile
@@ -0,0 +1,16 @@

DIRS = boot-wrapper-aarch64 kernel

all: ${DIRS}

clean:
.for dir in ${DIRS}
${MAKE} -C ${dir} clean
.endfor

boot-wrapper-aarch64: kernel

${DIRS}:
${MAKE} -C ${.TARGET}

.PHONY: boot-wrapper-aarch64 kernel

0 comments on commit 8026b9e

Please sign in to comment.