[LinksOS CVS Commit]linksos/hal include.mk,NONE,1.1 Makefile,1.1,1.2
Status: Inactive
Brought to you by:
terencevs
|
From: <ke...@to...> - 2003-01-03 21:24:39
|
Update of /cvsroot/linksos/linksos/hal In directory router-internal.tossell.net:/tmp/cvs-serv19726 Modified Files: Makefile Added Files: include.mk Log Message: Title: Basic HAL layout Changes: Added the new makefile and kstdio.c. Added x86 makefile and include.mk makefile include. Effects: kprintf should be ready to link into the kernel... once the kernel is ready to be linked :P a=kennyt --- NEW FILE: include.mk --- INCDIRS += ../prototypes Index: Makefile =================================================================== RCS file: /cvsroot/linksos/linksos/hal/Makefile,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Makefile 3 Jan 2003 20:46:02 -0000 1.1 --- Makefile 3 Jan 2003 21:24:34 -0000 1.2 *************** *** 1,2 **** --- 1,6 ---- + TOPDIR = ../ + + include $(TOPDIR)/machine.mk + LD = ld *************** *** 6,12 **** hal: hal-$(ARCH).o hal-$(ARCH).o: ! cd $(ARCH) ! gmake hal ! cp hal.o ../ \ No newline at end of file --- 10,16 ---- hal: hal-$(ARCH).o + rm -f hal.o + cp $(ARCH)/hal.o ./ hal-$(ARCH).o: ! cd $(ARCH) && make hal |