mirror of
https://github.com/transmission/transmission
synced 2025-01-31 11:23:40 +00:00
23 lines
388 B
Makefile
23 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
|