Просмотр исходного кода

gettext stuff
Author: jgg
Date: 2002-10-16 05:35:41 GMT
gettext stuff

Arch Librarian лет назад: 22
Родитель
Сommit
34b9dd5ac0
1 измененных файлов с 22 добавлено и 0 удалено
  1. 22 0
      buildlib/podomain.mak

+ 22 - 0
buildlib/podomain.mak

@@ -0,0 +1,22 @@
+# -*- make -*-
+
+# This creates the file listing used by xgettext and friends based on the
+# declared domain of the make file. It also arranges to set the DOMAIN 
+# CPPFLAG for the compilation.
+
+MY_DOMAIN := $(PACKAGE)
+ifdef DOMAIN
+$($(LOCAL)-OBJS): CPPFLAGS := $(CPPFLAGS) -DDOMAIN='"$(DOMAIN)"'
+MY_DOMAIN := $(DOMAIN)
+endif
+
+MKDIRS += $(PO_DOMAINS)/$(MY_DOMAIN)
+$(PO_DOMAINS)/$(MY_DOMAIN)/$(LOCAL).$(TYPE)list: SRC := $(addprefix $(SUBDIR)/,$(SOURCE))
+$(PO_DOMAINS)/$(MY_DOMAIN)/$(LOCAL).$(TYPE)list: makefile
+	(echo $(SRC) | xargs -n1 echo) > $@
+all: $(PO_DOMAINS)/$(MY_DOMAIN)/$(LOCAL).$(TYPE)list
+
+veryclean: veryclean/$(LOCAL)
+veryclean/po/$(LOCAL): LIST := $(PO_DOMAINS)/$(MY_DOMAIN)/$(LOCAL).$(TYPE)list
+veryclean/po/$(LOCAL):
+	rm -f $(LIST)