Index: branches/xZenu/src/arch/ppc/Makefile =================================================================== --- branches/xZenu/src/arch/ppc/Makefile (revision 0) +++ branches/xZenu/src/arch/ppc/Makefile (revision 1289) @@ -0,0 +1,26 @@ +# Makefile for ppc boot program + +# +# these paths are only valid in subdirectories of this directory +# +ROOT = $(shell pwd)/../../../ +SRCROOT = ${ROOT}/src +OBJROOT = $(ROOT)/obj/i386 +SYMROOT = $(ROOT)/sym/i386 +DSTROOT = $(ROOT)/dst/usr/standalone/${ARCH} +DOCROOT = $(ROOT)/doc + +include ${ROOT}/Make.rules + +# The order of building is important. +SUBDIRS = + +all: ${OBJROOT} ${SYMROOT} + @for i in ${SUBDIRS}; \ + do \ + echo ================= make $@ for $$i =================; \ + ( \ + cd $$i; ${MAKE} \ + $@ \ + ) || exit $$?; \ + done \ No newline at end of file Index: branches/xZenu/src/arch/armv5/Makefile =================================================================== --- branches/xZenu/src/arch/armv5/Makefile (revision 0) +++ branches/xZenu/src/arch/armv5/Makefile (revision 1289) @@ -0,0 +1,26 @@ +# Makefile for ppc boot program + +# +# these paths are only valid in subdirectories of this directory +# +ROOT = $(shell pwd)/../../../ +SRCROOT = ${ROOT}/src +OBJROOT = $(ROOT)/obj/i386 +SYMROOT = $(ROOT)/sym/i386 +DSTROOT = $(ROOT)/dst/usr/standalone/${ARCH} +DOCROOT = $(ROOT)/doc + +include ${ROOT}/Make.rules + +# The order of building is important. +SUBDIRS = + +all: ${OBJROOT} ${SYMROOT} + @for i in ${SUBDIRS}; \ + do \ + echo ================= make $@ for $$i =================; \ + ( \ + cd $$i; ${MAKE} \ + $@ \ + ) || exit $$?; \ + done \ No newline at end of file Index: branches/xZenu/src/arch/x86_64/Makefile =================================================================== --- branches/xZenu/src/arch/x86_64/Makefile (revision 0) +++ branches/xZenu/src/arch/x86_64/Makefile (revision 1289) @@ -0,0 +1,26 @@ +# Makefile for ppc boot program + +# +# these paths are only valid in subdirectories of this directory +# +ROOT = $(shell pwd)/../../../ +SRCROOT = ${ROOT}/src +OBJROOT = $(ROOT)/obj/i386 +SYMROOT = $(ROOT)/sym/i386 +DSTROOT = $(ROOT)/dst/usr/standalone/${ARCH} +DOCROOT = $(ROOT)/doc + +include ${ROOT}/Make.rules + +# The order of building is important. +SUBDIRS = + +all: ${OBJROOT} ${SYMROOT} + @for i in ${SUBDIRS}; \ + do \ + echo ================= make $@ for $$i =================; \ + ( \ + cd $$i; ${MAKE} \ + $@ \ + ) || exit $$?; \ + done \ No newline at end of file