[LinksOS CVS Commit]linksos/boot/x86 Makefile,NONE,1.1
Status: Inactive
Brought to you by:
terencevs
|
From: <ke...@to...> - 2003-01-03 21:47:46
|
Update of /cvsroot/linksos/linksos/boot/x86 In directory router-internal.tossell.net:/tmp/cvs-serv20371/boot/x86 Added Files: Makefile Log Message: Title: More build system Changes: added root makefile and machine definition file; main makefile. added boot/ makefiles and the main/ include def file. (this should be globalized.) Changed main.c to include using the predefined path. Effects: It builds (yes, it is the old code and it might not even be the right format, so what?) a=kennyt --- NEW FILE: Makefile --- TOPDIR = ../../ include $(TOPDIR)/machine.mk #include ../include.mk CFLAGS = -I$(INCDIRS) -Wall -O -fomit-frame-pointer -c -o .SUFFIXES: .asm boot: strap.o ld -r -o boot.o $< .c.o: $(GCC) $(CFLAGS) $@ $< .asm.o: $(ASM) -f elf $< |