Chameleon

Chameleon Commit Details

Date:2011-02-13 23:28:24 (13 years 2 months ago)
Author:Evan Lojewski
Commit:746
Parents: 745
Message:make mods will create modules. NOTE: Symbols.dylib must exist prior for module linking
Changes:
M/branches/meklort/i386/Makefile

File differences

branches/meklort/i386/Makefile
2828
2929
3030
31
32
3133
3234
3335
......
4446
4547
4648
47
48
49
50
51
52
53
54
49
50
51
52
53
5554
5655
5756
5857
59
60
61
58
59
6260
6361
6462
# The order of building is important.
SUBDIRS = util libsa libsaio boot2 boot1 boot0 cdboot modules
#SUBDIRS=util
all embedtheme optionrom tags debug install installhdrs:
@for i in ${SUBDIRS}; \
do \
) || exit $$?; \
done
modules:
@for i in "modules"; \
do \
echo ================= make $@ for $$i =================; \
( cd $$i; ${MAKE} \
"OBJROOT=$(OBJROOT)/$$i" \
"SYMROOT=$(SYMROOT)" \
"DSTROOT=$(DSTROOT)" \
mods:
echo ================= make all for modules =================;
@cd modules; ${MAKE} "OBJROOT=$(OBJROOT)/modules" \
"SYMROOT=$(SYMROOT)" \
"DSTROOT=$(DSTROOT)" \
"SRCROOT=$(SRCROOT)" \
"RC_ARCHS=$(RC_ARCHS)" \
"RC_KANJI=$(RC_KANJI)" \
"JAPANESE=$(JAPANESE)" \
"RC_CFLAGS=$(RC_CFLAGS)" $@ \
) || exit $$?; \
done
"RC_CFLAGS=$(RC_CFLAGS)" all \
|| exit; \
installsrc:

Archive Download the corresponding diff file

Revision: 746