git » fp-git.git » commit 34e1d52

added kernel compilation

author ecalot
2004-06-16 20:28:59 UTC
committer ecalot
2004-06-16 20:28:59 UTC
parent 2fb361a32e740fc6593d555fef4d38c131d8ee0b

added kernel compilation

FP/src/Makefile +10 -4

diff --git a/FP/src/Makefile b/FP/src/Makefile
index 3793597..c1df13b 100644
--- a/FP/src/Makefile
+++ b/FP/src/Makefile
@@ -20,9 +20,11 @@ INCLUDE = -Iinclude/
 DEFINES = -DOS=\"$(OS)\" $(LINUX) 
 OPTIONS = $(INCLUDE) $(DEFINES)
 
-OBJFILES = resources.o disk.o\
-           dat.o main.o\
-           $(SRC2)
+OBJFILES = main.o kernel.o
+#\
+#resources.o disk.o\
+#           dat.o main.o\
+#           $(SRC2)
 
 
 EXEFILE  = bin/freeprince
@@ -55,7 +57,7 @@ all: $(EXEFILE)
 #	$(CC) -c compress.c $(OPTIONS)
 
 main.o: main.c
-	$(INFO) Compiling main program...
+	$(INFO) Compiling command line parser...
 	$(CC) -c main.c $(OPTIONS)
 
 resources.o: res/resources.c
@@ -70,3 +72,7 @@ dat.o: res/dat.c
 	$(INFO) Compiling dat editing library...
 	$(CC) -c res/dat.c $(OPTIONS)
 
+kernel.o: ker/kernel.c
+	$(INFO) Compiling main kernel...
+	$(CC) -c ker/kernel.c $(OPTIONS)
+