summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--common/entities/Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/common/entities/Makefile b/common/entities/Makefile
index f9a187e..ad1d61b 100644
--- a/common/entities/Makefile
+++ b/common/entities/Makefile
@@ -78,7 +78,8 @@ help::
define PO_template
.PHONY: po-${1}
.PRECIOUS: ${1}.po
-po-${1} po/${1}.po:: po/entities.pot
+po-${1}:: po/${1}.po
+po/${1}.po:: po/entities.pot
if [ ! -f po/${1}.po ]; then \
cp $$< po/${1}.po; \
else \
@@ -107,7 +108,8 @@ help::
#
define UPDATE_template
.PHONY: xml-${1}
-xml-${1} entities-${1}.xml:: entities-${PRI_LANG}.xml po/${1}.po
+xml-${1}:: entities-${1}.xml
+entities-${1}.xml:: entities-${PRI_LANG}.xml po/${1}.po
xml2po -p po/${1}.po entities-${PRI_LANG}.xml >entities-${1}.xml
help::