[LinksOS CVS Commit]kernel/main Makefile,1.15,1.16
Status: Inactive
Brought to you by:
terencevs
|
From: <ke...@to...> - 2003-01-12 21:02:21
|
Update of /cvsroot/linksos/kernel/main In directory router-internal.tossell.net:/tmp/cvs-serv1966/main Modified Files: Makefile Log Message: Title: Makefile Opt. and Info Changes: Broke CXX lines into smaller pieces. Added 'its all good' message to end of build. Effects: More configurable. a=kennyt Index: Makefile =================================================================== RCS file: /cvsroot/linksos/kernel/main/Makefile,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** Makefile 4 Jan 2003 09:36:42 -0000 1.15 --- Makefile 12 Jan 2003 21:02:15 -0000 1.16 *************** *** 4,8 **** include include.mk ! CFLAGS = $(INCDIRS) -Wall -O -fomit-frame-pointer -fno-leading-underscore -c -o OBJS = start.o --- 4,8 ---- include include.mk ! CXXFLAGS+= $(INCDIRS) -Wall -O -fomit-frame-pointer -fno-leading-underscore -c -o OBJS = start.o *************** *** 15,19 **** .cpp.o: ! $(CXX) $(CFLAGS) $@ $< .asm.o: --- 15,19 ---- .cpp.o: ! $(CXX) $(CXXFLAGS) $@ $< .asm.o: |