[LinksOS CVS Commit]linksos/main Makefile,1.7,1.8 include.mk,1.2,1.3
Status: Inactive
Brought to you by:
terencevs
|
From: <ke...@to...> - 2003-01-03 23:00:28
|
Update of /cvsroot/linksos/linksos/main In directory router-internal.tossell.net:/tmp/cvs-serv22600/main Modified Files: Makefile include.mk Log Message: Title: Include path fix Changes: -I is now added in the include.mk files, not in the Makefile Effects: We won't have to worry about stupid shells misbehaving. a=kennyt Index: Makefile =================================================================== RCS file: /cvsroot/linksos/linksos/main/Makefile,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** Makefile 3 Jan 2003 22:53:49 -0000 1.7 --- Makefile 3 Jan 2003 23:00:24 -0000 1.8 *************** *** 4,8 **** include include.mk ! CFLAGS = -I$(INCDIRS) -Wall -O -fomit-frame-pointer -c -o .SUFFIXES: .asm --- 4,8 ---- include include.mk ! CFLAGS = $(INCDIRS) -Wall -O -fomit-frame-pointer -c -o .SUFFIXES: .asm Index: include.mk =================================================================== RCS file: /cvsroot/linksos/linksos/main/include.mk,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** include.mk 3 Jan 2003 22:32:11 -0000 1.2 --- include.mk 3 Jan 2003 23:00:24 -0000 1.3 *************** *** 1 **** ! INCDIRS += {$(TOPDIR)hal/prototypes,$(TOPDIR)boot/$(ARCH)} \ No newline at end of file --- 1 ---- ! INCDIRS += -I$(TOPDIR)hal/prototypes -I$(TOPDIR)boot/$(ARCH) \ No newline at end of file |