mirror of
https://github.com/transmission/transmission
synced 2025-01-31 03:12:44 +00:00
cf56d58f06
Add italian translation. Add an install make target for transmissioncli and transmission-gtk.
22 lines
388 B
Makefile
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
|