[LinksOS CVS Commit]linksos/hal/x86 Makefile,1.6,1.7
Status: Inactive
Brought to you by:
terencevs
|
From: <ke...@to...> - 2003-01-04 09:36:48
|
Update of /cvsroot/linksos/linksos/hal/x86 In directory router-internal.tossell.net:/tmp/cvs-serv32501/hal/x86 Modified Files: Makefile Log Message: Title: Makefile and *CC* Changes: Added .cpp target. Changed GCC to CC. Effects: C++ support coming... a=kennyt Index: Makefile =================================================================== RCS file: /cvsroot/linksos/linksos/hal/x86/Makefile,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** Makefile 4 Jan 2003 08:28:57 -0000 1.6 --- Makefile 4 Jan 2003 09:36:41 -0000 1.7 *************** *** 12,16 **** .c.o: ! $(GCC) $(CFLAGS) $@ $< clean: --- 12,19 ---- .c.o: ! $(CC) $(CFLAGS) $@ $< ! ! .cpp.o: ! $(CXX) $(CFLAGS) $@ $< clean: |