[LinksOS CVS Commit]linksos/hal/x86 Makefile,NONE,1.1 kstdio.c,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/x86 In directory router-internal.tossell.net:/tmp/cvs-serv19726/x86 Modified Files: kstdio.c Added Files: Makefile 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: Makefile --- TOPDIR = ../../ include $(TOPDIR)/machine.mk include ../include.mk CFLAGS = -I$(INCDIRS) -Wall -O -fomit-frame-pointer -c -o hal: kstdio.o ld -r -o hal.o kstdio.o .c.o: $(GCC) $(CFLAGS) $@ $< Index: kstdio.c =================================================================== RCS file: /cvsroot/linksos/linksos/hal/x86/kstdio.c,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** kstdio.c 3 Jan 2003 20:22:27 -0000 1.1 --- kstdio.c 3 Jan 2003 21:24:34 -0000 1.2 *************** *** 10,17 **** \****************************************************************************/ ! #include "include/kstdio.h" ! typedef unsigned char u_char; /* this needs to be moved to a "types" ! header file. */ void kprintf(char* text) --- 10,17 ---- \****************************************************************************/ ! #include "kstdio.h" ! typedef unsigned char u_char; ! /* this needs to be moved to a "types" header file. */ void kprintf(char* text) |