Chameleon

Chameleon Commit Details

Date:2011-08-06 01:52:54 (12 years 7 months ago)
Author:Evan Lojewski
Commit:1289
Parents: 1288
Message:Add arch specific makefiles
Changes:
A/branches/xZenu/src/arch/ppc/Makefile
A/branches/xZenu/src/arch/armv5/Makefile
A/branches/xZenu/src/arch/x86_64/Makefile

File differences

branches/xZenu/src/arch/ppc/Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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
branches/xZenu/src/arch/armv5/Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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
branches/xZenu/src/arch/x86_64/Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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

Archive Download the corresponding diff file

Revision: 1289