I use a Makefile to do language translations/conversions. For every language there is a rule to do the conversion from XML to a specific format.
How to combine following these similar patterns into one rule?
Adding more languages would bloat the code in this Makefile.
In this case I cannot change the suffix for targets (de_DE -> de_DE.txt). That would make it easier!
Here is the Makefile:
# german translation
%.de_DE: %.de_DE.xml
@java $(JAVA_PAR) $(CONVERTER) $< $@
# turkish translation
%.tr_TR: %.tr_TR.xml
@java $(JAVA_PAR) $(CONVERTER) $< $@
# cz translation
%.cs_CZ: %.cs_CZ.xml
@java $(JAVA_PAR) $(CONVERTER) $< $@
%: %.xmlbe too loose? – Beta Feb 15 '12 at 16:00