summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorBrendan O'Dea <bod@debian.org>2003-07-09 10:25:17 +0000
committerBrendan O'Dea <bod@debian.org>2003-07-09 10:25:17 +0000
commitf43a8c50f4bd421d4b52be9e3724633b772f402c (patch)
tree0612fea4b73b259a525c9e3f2b763e86bec91e5e /Makefile.in
parent249fd7e1ee3c4ed43c33dbfa752bf07dde0c9d05 (diff)
downloadhelp2man-f43a8c50f4bd421d4b52be9e3724633b772f402c.tar.gz
Oops, might help to actually *install* the message catalog.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in11
1 files changed, 9 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index 3d8e695..652fb1e 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -1,5 +1,5 @@
# Makefile for help2man
-# $Id: Makefile.in,v 1.9 2003-07-08 17:06:53 bod Exp $
+# $Id: Makefile.in,v 1.10 2003-07-09 10:25:17 bod Exp $
SHELL = @SHELL@
@@ -13,6 +13,7 @@ mandir = @mandir@
infodir = @infodir@
man1dir = $(mandir)/man1
man1dir_fr = $(mandir)/fr/man1
+localedir = $(datadir)/locale
DESTDIR =
@@ -36,17 +37,22 @@ all: basic check $(target).fr.1 info
install-strip: install
# No binaries to strip.
-install: $(target) $(hack).so $(target).1 $(target).fr.1 $(target).info
+install: $(target) $(hack).so $(target).1 $(target).fr.1 $(target).info \
+ po/fr.gmo
$(MKINSTALLDIRS) $(DESTDIR)$(bindir)
$(MKINSTALLDIRS) $(DESTDIR)$(libdir)
$(MKINSTALLDIRS) $(DESTDIR)$(man1dir)
$(MKINSTALLDIRS) $(DESTDIR)$(man1dir_fr)
+ $(MKINSTALLDIRS) $(DESTDIR)$(localedir)/fr/LC_MESSAGES
$(MKINSTALLDIRS) $(DESTDIR)$(infodir)
$(INSTALL_PROGRAM) $(target) $(DESTDIR)$(bindir)
$(INSTALL_PROGRAM) $(hack).so $(DESTDIR)$(libdir)
$(INSTALL_DATA) $(target).1 $(DESTDIR)$(man1dir)
$(INSTALL_DATA) $(target).fr.1 $(DESTDIR)$(man1dir_fr)/$(target).1
+ $(INSTALL_DATA) po/fr.gmo \
+ $(DESTDIR)$(localedir)/fr/LC_MESSAGES/$(target).mo
+
$(INSTALL_DATA) $(target).info $(DESTDIR)$(infodir)/$(target).info
if test -f $(DESTDIR)$(infodir)/dir; \
then \
@@ -58,6 +64,7 @@ uninstall:
$(DESTDIR)$(libdir)/$(hack).so \
$(DESTDIR)$(man1dir)/$(target).1 \
$(DESTDIR)$(man1dir_fr)/$(target).1 \
+ $(DESTDIR)$(localedir)/fr/LC_MESSAGES/$(target).mo \
$(DESTDIR)$(infodir)/$(target).info
if test -f $(DESTDIR)$(infodir)/dir; \