1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-01-31 03:12:44 +00:00
transmission/gtk/po/Makefile
Josh Elsasser cf56d58f06 A couple minor i18n cleanups.
Add italian translation.
Add an install make target for transmissioncli and transmission-gtk.
2006-04-25 08:14:37 +00:00

22 lines
388 B
Makefile

include ../../Makefile.config
include ../../Makefile.common
POFILES = $(wildcard *.po)
MOFILES = $(POFILES:%.po=%.mo)
all: $(MOFILES)
@true
%.mo: %.po ../../Makefile.config ../../Makefile.common Makefile
$(MSGFMT_RULE)
%.mo.install: %.mo
$(INSTALL_LOCALE_RULE)
clean:
@echo "Clean $(MOFILES)"
$(RM) $(MOFILES)
install: $(MOFILES) $(MOFILES:%.mo=%.mo.install)
-include .depend