Makefile 365 B

1234567891011121314151617181920
  1. #
  2. # Makefile to make the internationalization files for the resstr example
  3. # Add a 2 letter code when adding a language to DEMOLANGUAGES
  4. #
  5. DEMOLANGUAGES=fr nl de pb ru cs
  6. #
  7. # No need to add after this line.
  8. #
  9. OBJECTS=$(addprefix restest.,$(DEMOLANGUAGES))
  10. MOOBJECTS=$(addsuffix .mo,$(OBJECTS))
  11. .SUFFIXES: .mo .po
  12. %.mo: %.po
  13. msgfmt -o $@ $?
  14. all: $(MOOBJECTS)