15 lines
360 B
Plaintext
15 lines
360 B
Plaintext
# message files for non-C locales - ie: local .msg files. So much
|
|
# nicer :)
|
|
|
|
BUILT_SOURCES = $(shell ls *.msg |grep -v libAB |sed -e 's/.msg/.cat/g')
|
|
CLEANFILES = $(BUILT_SOURCES)
|
|
|
|
msgcatdir = $(CDE_INSTALLATION_TOP)/lib/nls/msg/$(LANG)
|
|
dist_msgcat_DATA = $(BUILT_SOURCES)
|
|
|
|
SUFFIXES = .msg .cat
|
|
|
|
.msg.cat:
|
|
$(RM) $@
|
|
LANG=$(LANG) $(GENCAT) $@ $^ || $(RM) $@
|