git » fp-git.git » commit 3ae6cb3

src2 bugfix

author ecalot
2005-05-10 04:05:03 UTC
committer ecalot
2005-05-10 04:05:03 UTC
parent a914a0e1a4cad63af686ba8ea75b4d20e812ddc4

src2 bugfix

FP/src/Makefile +2 -2

diff --git a/FP/src/Makefile b/FP/src/Makefile
index b0eee56..fe6930f 100644
--- a/FP/src/Makefile
+++ b/FP/src/Makefile
@@ -57,7 +57,7 @@ endif
 OBJFILES      = main.o kernel.o resources.o dat.o disk.o compress.o \
                 output.o maps.o config.o room.o titles.o \
                 input.o kid.o states.o tiles.o walls.o anims.o\
-                object.o
+                object.o $(SRC2)
 EXEFILE       = bin/freeprince
 
 GENERATEDRESHEADERS = include/res_conf_parts.h include/res_conf_files.h\
@@ -82,7 +82,7 @@ LINKEROPTIONS = $(LINKERRELEASE)
 $(EXEFILE): $(OBJFILES)
 	$(INFO) Linking files...
 	$(MAKEDIR) bin
-	$(LINKER) $(LINKEROPTIONS) -o $(EXEFILE) $(OBJFILES) $(LIBS) $(LINKEROPTIONS) $(SRC2)
+	$(LINKER) $(LINKEROPTIONS) -o $(EXEFILE) $(OBJFILES) $(LIBS) $(LINKEROPTIONS)
 	$(INFO) Program successfully compiled
 
 ###################