home *** CD-ROM | disk | FTP | other *** search
/ ftp.wwiv.com / ftp.wwiv.com.zip / ftp.wwiv.com / pub / BBS / AMC0995.ZIP / lib / lang / Makefile < prev    next >
Makefile  |  2004-06-25  |  349b  |  21 lines

  1. #
  2. # Makefile to make the internationalization files for A.M.C.
  3. # Add a 2 letter code when adding a language to AMCLANGUAGES
  4. #
  5.  
  6. AMCLANGUAGES=00 en nl de
  7.  
  8. #
  9. # No need to add after this line.
  10. #
  11.  
  12. OBJECTS=$(addprefix amc_messages.,$(AMCLANGUAGES))
  13. MOOBJECTS=$(addsuffix .mo,$(OBJECTS))
  14.  
  15. .SUFFIXES: .mo .po
  16.  
  17. %.mo: %.po
  18.     msgfmt -o $@ $?
  19.  
  20. all: $(MOOBJECTS)
  21.