[LinksOS CVS Commit]linksos/boot/x86 Makefile,1.1,1.2
Status: Inactive
Brought to you by:
terencevs
|
From: <ke...@to...> - 2003-01-03 22:32:21
|
Update of /cvsroot/linksos/linksos/boot/x86 In directory router-internal.tossell.net:/tmp/cvs-serv21406/boot/x86 Modified Files: Makefile Log Message: Title: Multiboot Changes: Added multiboot code (bgm's). Fixed makefiles (they need more work) - changed to GNU as, added more to main.c (notices and multiboot checks) Effects: You can boot from GRUB! a=kennyt Index: Makefile =================================================================== RCS file: /cvsroot/linksos/linksos/boot/x86/Makefile,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Makefile 3 Jan 2003 21:47:38 -0000 1.1 --- Makefile 3 Jan 2003 22:32:10 -0000 1.2 *************** *** 8,13 **** .SUFFIXES: .asm ! boot: strap.o ! ld -r -o boot.o $< .c.o: --- 8,15 ---- .SUFFIXES: .asm ! OBJS = io.o multiboot.o ! ! boot: $(OBJS) ! ld -r -o boot.o $(OBJS) .c.o: *************** *** 15,17 **** .asm.o: ! $(ASM) -f elf $< \ No newline at end of file --- 17,22 ---- .asm.o: ! $(ASM) -f elf $< ! ! .S.o: ! $(GCC) $(CFLAGS) $@ $< \ No newline at end of file |