git » fp-git.git » commit 29a0b8d

bugfixed xml creation

author ecalot
2005-06-04 10:43:35 UTC
committer ecalot
2005-06-04 10:43:35 UTC
parent 64a558df5770b0056e2585d27615ed73e7bb41f7

bugfixed xml creation

PR/src/Makefile +3 -3

diff --git a/PR/src/Makefile b/PR/src/Makefile
index 56e5372..6fc257d 100644
--- a/PR/src/Makefile
+++ b/PR/src/Makefile
@@ -73,7 +73,7 @@ LINKEROPTIONS = $(LINKERRELEASE)
 
 #main file
 
-$(EXEFILE): $(EXEOBJ)
+$(EXEFILE): $(EXEOBJ) $(XMLFILE)
 	$(INFO) Linking files...
 	$(MAKEDIR) bin
 	$(CC) $(OPTIONS) -o $(EXEFILE) $(EXEOBJ)  -o $@
@@ -108,10 +108,10 @@ lib: $(LIBOBJ)
 
 #files
 
-$(XMLFILE): resources.xml.gz
+$(XMLFILE): xml/resources.xml
 	$(INFO) Copying resources...
 	$(MAKEDIR) bin
-	$(CP) xml/resources.xml $(XMLFILE)
+	$(COPY) xml/resources.xml $(XMLFILE)
 
 .import.o: lib/actions/import.c
 	$(INFO) Compiling import module...