diff options
author | Patrick Williams <iawillia@us.ibm.com> | 2010-06-07 14:41:20 -0500 |
---|---|---|
committer | Patrick Williams <iawillia@us.ibm.com> | 2010-06-07 14:41:20 -0500 |
commit | 546a015f74fab0c4e359cf97f289ff26d6481844 (patch) | |
tree | bd2643a5d512af932090fb09748aea8aa8f61521 /src/sys/makefile | |
parent | cd86583d084a4227dbf6a7cca2934eaad2b060d1 (diff) | |
download | talos-hostboot-546a015f74fab0c4e359cf97f289ff26d6481844.tar.gz talos-hostboot-546a015f74fab0c4e359cf97f289ff26d6481844.zip |
Create init process, fix scheduler bugs.
Diffstat (limited to 'src/sys/makefile')
-rw-r--r-- | src/sys/makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/sys/makefile b/src/sys/makefile new file mode 100644 index 000000000..5a553e1d2 --- /dev/null +++ b/src/sys/makefile @@ -0,0 +1,12 @@ +IMGDIR = ../../img +OBJDIR = ../../obj +include ../../config.mk + +SUBDIRS = init.d +IMAGES += ${IMGDIR}/kernel.elf +IMAGES += ${IMGDIR}/kernel.bin + +all: ${SUBDIRS} + +clean: $(patsubst %.d,%.clean, ${SUBDIRS}) + (rm -f ${IMAGES} ) |