[LinksOS CVS Commit]linksos Makefile,1.2,1.3
Status: Inactive
Brought to you by:
terencevs
|
From: <bg...@us...> - 2003-01-26 11:31:53
|
Update of /cvsroot/linksos/linksos In directory sc8-pr-cvs1:/tmp/cvs-serv2091 Modified Files: Makefile Log Message: Title: Rebuild of CVS Changes: Added license and returned code that was removed Effects: We now have a bootable hello world kernel with correct copyright notice a=n/a b=n/a Index: Makefile =================================================================== RCS file: /cvsroot/linksos/linksos/Makefile,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Makefile 17 Nov 2002 07:45:48 -0000 1.2 --- Makefile 26 Jan 2003 11:31:49 -0000 1.3 *************** *** 1,2 **** ! #The main Makefile goes here ! # --- 1,31 ---- ! #No comment ! ! # The linker ! LD = ld ! ! #The target filename ! KERNELFN = kernel.elf ! ! # The object files ! OBJS = main/kstdio.o main/cmain.o main/io.o boot/multiboot.o ! ! #Include ! INCLUDE = ../include ! ! #Compiler parameters ! CFLAGS = -I$(INCLUDE) -Wall -O -fomit-frame-pointer -c -o ! ! ALL: $(KERNELFN) ! ! $(KERNELFN): ! (cd main;$(MAKE)) ! (cd boot;$(MAKE)) ! $(LD) -o $@ $(OBJS) -Map kernel.map -Ttext 0x100000 ! ! clean: ! $(RM) -f $(KERNELFN) kernel.map ! (cd main;$(MAKE) clean) ! (cd boot;$(MAKE) clean) ! ! ! |