12 lines
344 B
Makefile
12 lines
344 B
Makefile
%.eplug: %.eplug.in
|
|
sed -e 's|\@PLUGINDIR\@|$(plugindir)|' \
|
|
-e 's|\@SOEXT\@|$(SOEXT)|' \
|
|
-e 's|\@GETTEXT_PACKAGE\@|$(GETTEXT_PACKAGE)|' \
|
|
-e 's|\@LOCALEDIR\@|$(localedir)|' $< > $@
|
|
|
|
%.eplug.in: %.eplug.xml
|
|
LC_ALL=C $(INTLTOOL_MERGE) -x -u /tmp/notthere $< $@
|
|
|
|
%.error: %.error.xml
|
|
LC_ALL=C $(INTLTOOL_MERGE) -x -u /tmp/notthere $< $@
|