git » fp-git.git » commit ea4c2ef

Agrego los .h a las dependencias de los .o

author dessaya
2004-06-23 01:30:44 UTC
committer dessaya
2004-06-23 01:30:44 UTC
parent 7c9eec07ccb3abe88bcd4a60f45a9d880f82549d

Agrego los .h a las dependencias de los .o

FP/src/Makefile +2 -2

diff --git a/FP/src/Makefile b/FP/src/Makefile
index 455d405..42ae598 100644
--- a/FP/src/Makefile
+++ b/FP/src/Makefile
@@ -56,7 +56,7 @@ all: $(EXEFILE)
 #	$(INFO) Compiling compression module...
 #	$(CC) -c compress.c $(OPTIONS)
 
-main.o: main.c
+main.o: main.c include/kernel.h include/main.h
 	$(INFO) Compiling command line parser...
 	$(CC) -c main.c $(OPTIONS)
 
@@ -72,7 +72,7 @@ dat.o: res/dat.c
 	$(INFO) Compiling resource dat editing library...
 	$(CC) -c res/dat.c $(OPTIONS)
 
-kernel.o: ker/kernel.c
+kernel.o: ker/kernel.c include/kernel.h include/resources.h include/output.h
 	$(INFO) Compiling main kernel...
 	$(CC) -c ker/kernel.c $(OPTIONS)