summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 92ef0db..501b17b 100644
--- a/Makefile
+++ b/Makefile
@@ -4,7 +4,7 @@ VERSION = 0.1.0
NAME = pindaiba
NAME_UC = PindaĆ­ba
MAILING_LIST = public-inbox
-TRANSLATIONS =
+LANGUAGES = en
## Installation prefix. Defaults to "/usr".
PREFIX = /usr
BINDIR = $(PREFIX)/bin
@@ -150,7 +150,7 @@ install: all
mkdir -p "$$dir"; \
cp -P "$$f" "$$dir"; \
done
- for l in en $(TRANSLATIONS); do \
+ for l in $(LANGUAGES); do \
dir='$(DESTDIR)$(LOCALEDIR)'/"$$l"/LC_MESSAGES; \
mkdir -p "$$dir"; \
cp src/$(NAME)."$$l".cat "$$dir"/$(NAME).cat; \
@@ -166,7 +166,7 @@ uninstall:
'$(DESTDIR)$(LIBDIR)'/lib$(NAME).a \
'$(DESTDIR)$(INCLUDEDIR)'/$(NAME).h \
'$(DESTDIR)$(SRCDIR)'
- for l in en $(TRANSLATIONS); do \
+ for l in $(LANGUAGES); do \
rm -f '$(DESTDIR)$(LOCALEDIR)'/"$$l"/LC_MESSAGES/$(NAME).cat; \
done
sh tools/manpages.sh -up '$(DESTDIR)$(MANDIR)' $(manpages)