summaryrefslogtreecommitdiff
path: root/community/signon-ui/Makefile
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-10-08 02:34:09 -0700
committerroot <root@rshg054.dnsready.net>2013-10-08 02:34:09 -0700
commit3a0ad5dc35d5cff379cdfc736b9cae856416fe6a (patch)
treea6af20a38d47d7a7ae8e1b98f70005c54644bbdd /community/signon-ui/Makefile
parent9159b8ca1c97a398204d7a7d4d78c3394639bd02 (diff)
Tue Oct 8 02:32:53 PDT 2013
Diffstat (limited to 'community/signon-ui/Makefile')
-rw-r--r--community/signon-ui/Makefile31
1 files changed, 0 insertions, 31 deletions
diff --git a/community/signon-ui/Makefile b/community/signon-ui/Makefile
deleted file mode 100644
index 3ede78507..000000000
--- a/community/signon-ui/Makefile
+++ /dev/null
@@ -1,31 +0,0 @@
-# Add here the language codes for the translated .po files:
-LINGUAS =
-
-I18N_DOMAIN = signon-ui
-
-PO_FILES = $(addsuffix .po, $(LINGUAS))
-MO_FILES = $(addsuffix .mo, $(LINGUAS))
-
-DEL_FILE = rm -f
-INSTALL = /usr/bin/install -c -m 644
-MKDIR = mkdir -p
-
-all: $(MO_FILES)
-
-install: all
- for lang in $(LINGUAS); do \
- dir=$(INSTALL_ROOT)/usr/share/locale/$$lang/LC_MESSAGES; \
- $(MKDIR) $$dir; \
- $(INSTALL) $$lang.mo $$dir/$(I18N_DOMAIN).mo; \
- done
-
-%.mo: %.po
- msgfmt -o "$@" "$<"
-
-clean:
- -$(DEL_FILE) $(MO_FILES)
-
-distclean: clean
-
-check: all
-