[opendemo-cvs] CVS: opendemo/src/dtd Makefile,1.9,1.10
Status: Beta
Brought to you by:
girlich
From: Uwe G. <gi...@us...> - 2006-10-03 13:57:57
|
Update of /cvsroot/opendemo/opendemo/src/dtd In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv5344 Modified Files: Makefile Log Message: rules considerably simplified Index: Makefile =================================================================== RCS file: /cvsroot/opendemo/opendemo/src/dtd/Makefile,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** Makefile 3 Oct 2006 09:31:16 -0000 1.9 --- Makefile 3 Oct 2006 13:57:51 -0000 1.10 *************** *** 3,35 **** include ../../Makefile.inc ! CSOURCE_Q3A=../q3a/opendemo/game/od_fields.c ! CSOURCE_RTCW=../rtcw-mp/opendemo/opendemo/od_fields.c ! CSOURCE_SOF2=../sof2/opendemo/opendemo/od_fields.c ! CSOURCE_JK2=../jk2/opendemo/opendemo/od_fields.c ! CSOURCE_STEF=../stef/opendemo/opendemo/od_fields.c ! CSOURCE=$(CSOURCE_Q3A) \ ! $(CSOURCE_RTCW) \ ! $(CSOURCE_SOF2) \ ! $(CSOURCE_JK2) \ ! $(CSOURCE_STEF) \ DTDS=odq3a.dtd odrtcw.dtd odsof2.dtd odjk2.dtd odstef.dtd ! dtd: $(DTDS) $(CSOURCE) ! ! odq3a.dtd: $(CSOURCE_Q3A) odq3a.dtd.in ! $(SRC2DTD) $(CSOURCE_Q3A) odq3a.dtd.in $@ ! ! odrtcw.dtd: $(CSCOURCE_RTCW) odrtcw.dtd.in ! $(SRC2DTD) $(CSOURCE_RTCW) odrtcw.dtd.in $@ ! ! odsof2.dtd: $(CSCOURCE_SOF2) odsof2.dtd.in ! $(SRC2DTD) $(CSOURCE_SOF2) odsof2.dtd.in $@ ! ! odjk2.dtd: $(CSCOURCE_SOF2) odjk2.dtd.in ! $(SRC2DTD) $(CSOURCE_JK2) odjk2.dtd.in $@ ! odstef.dtd: $(CSCOURCE_STEF) odstef.dtd.in ! $(SRC2DTD) $(CSOURCE_STEF) odstef.dtd.in $@ clean: --- 3,20 ---- include ../../Makefile.inc ! CSOURCE_q3a=../q3a/opendemo/game/od_fields.c ! CSOURCE_rtcw=../rtcw-mp/opendemo/opendemo/od_fields.c ! CSOURCE_sof2=../sof2/opendemo/opendemo/od_fields.c ! CSOURCE_jk2=../jk2/opendemo/opendemo/od_fields.c ! CSOURCE_stef=../stef/opendemo/opendemo/od_fields.c DTDS=odq3a.dtd odrtcw.dtd odsof2.dtd odjk2.dtd odstef.dtd ! dtd: $(DTDS) ! %.dtd: %.dtd.in $(CSOURCE_$(subst .dtd,,$(subst od,,$@))) ! $(SRC2DTD) $(CSOURCE_$(subst .dtd,,$(subst od,,$@))) $@.in temp ! $(WPU) --set ACTION=subst temp $@ ! $(RM) temp clean: |