[LinksOS CVS Commit]linksos Makefile,1.4,1.5
Status: Inactive
Brought to you by:
terencevs
|
From: <ke...@to...> - 2003-01-03 22:54:20
|
Update of /cvsroot/linksos/linksos In directory router-internal.tossell.net:/tmp/cvs-serv22328 Modified Files: Makefile Log Message: Title: Cleanup Target Changes: Added the clean target. Effects: Clean up that code. a=kennyt Index: Makefile =================================================================== RCS file: /cvsroot/linksos/linksos/Makefile,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** Makefile 3 Jan 2003 22:32:10 -0000 1.4 --- Makefile 3 Jan 2003 22:53:45 -0000 1.5 *************** *** 8,9 **** --- 8,15 ---- cd main && make main $(LD) -Bstatic -o kernel.bin hal/hal.o boot/boot.o main/main.o -Map main/kernel.map -Ttext 0x100000 + + clean: + rm -f *.o *~ + cd hal && make clean + cd boot && make clean + cd main && make clean \ No newline at end of file |