(install-exec-hook, remove-installed-links): Work even when configured
[debian/gzip] / Makefile.am
1 # Make gzip (GNU zip).
2
3 ## Copyright (C) 1999, 2001, 2002 Free Software Foundation
4
5 ## This program is free software; you can redistribute it and/or modify
6 ## it under the terms of the GNU General Public License as published by
7 ## the Free Software Foundation; either version 2, or (at your option)
8 ## any later version.
9
10 ## This program is distributed in the hope that it will be useful,
11 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 ## GNU General Public License for more details.
14
15 ## You should have received a copy of the GNU General Public License
16 ## along with this program; if not, write to the Free Software
17 ## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
18 ## 02111-1307, USA.
19
20 AUTOMAKE_OPTIONS = gnits dist-shar
21 ACLOCAL_AMFLAGS = -I m4
22
23 man_MANS = gunzip.1 gzexe.1 gzip.1 \
24   zcat.1 zcmp.1 zdiff.1 zforce.1 zgrep.1 zless.1 zmore.1 znew.1
25
26 M4DIR = $(srcdir)/m4
27 ACINCLUDE_INPUTS = $(M4DIR)/shell.m4
28
29 EXTRA_DIST = $(ACINCLUDE_INPUTS) $(man_MANS) \
30   algorithm.doc amiga/match.a amiga/Makefile.gcc amiga/Makefile.sasc \
31   amiga/tailor.c amiga/utime.h atari/Makefile.st crypt.h getopt.h \
32   gzexe.in gzip.doc gzip.h lzw.h msdos/match.asm msdos/tailor.c \
33   msdos/gzip.prj msdos/doturboc.bat msdos/Makefile.msc msdos/Makefile.bor \
34   msdos/Makefile.djg nt/Makefile.nt os2/gzip.def os2/Makefile.os2 \
35   os2/gzip16.def primos/include/errno.h primos/include/fcntl.h \
36   primos/include/stdlib.h primos/include/sysStat.h \
37   primos/include/sysTypes.h primos/build.cpl primos/readme \
38   primos/primos.c primos/ci.opts revision.h sample/makecrc.c \
39   sample/ztouch sample/add.c sample/sub.c sample/zread.c sample/zfile \
40   tailor.h vms/Makefile.mms vms/gzip.hlp vms/vms.c vms/Readme.vms \
41   vms/Makefile.vms vms/Makefile.gcc vms/makegzip.com zdiff.in \
42   zforce.in zgrep.in zless.in zmore.in znew.in
43
44 bin_PROGRAMS = gzip
45 bin_SCRIPTS = gzexe zdiff zgrep zforce zless zmore znew
46 gzip_SOURCES = \
47   bits.c crypt.c deflate.c getopt.c getopt1.c gzip.c inflate.c lzw.c \
48   trees.c unlzh.c unlzw.c unpack.c unzip.c util.c yesno.c zip.c
49 gzip_LDADD = @LIBOBJS@
50
51 info_TEXINFOS = gzip.texi
52
53 ASCPP = @ASCPP@
54 LN_S = @LN_S@
55
56 match.$(OBJEXT): match.c
57         $(ASCPP) $(srcdir)/match.c >_match.s
58         $(CC) -c $(CFLAGS) _match.s
59         mv _match.$(OBJEXT) match.$(OBJEXT)
60         rm -f _match.s
61
62 gzip.doc: gzip.1
63         groff -man -Tascii $(srcdir)/gzip.1 | col -b | uniq >$@
64
65 SUFFIXES = .in
66 .in:
67         sed \
68                 -e '$(SEDCMD)' \
69                 -e 's|/bin/sh|$(SHELL)|g' \
70                 -e 's|BINDIR|$(bindir)|g' \
71                 $(srcdir)/$@.in >$@
72         chmod a+x $@
73
74 install-exec-hook: remove-installed-links
75 install-exec-hook remove-installed-links:
76         @for prog_ext in $(bin_PROGRAMS) $(bin_SCRIPTS); do \
77           prog=`echo "$$prog_ext"|sed 's/$(EXEEXT)$$//'`; \
78           case $$prog in \
79           gzip) aliases='gunzip zcat';; \
80           zdiff) aliases='zcmp';; \
81           zgrep) aliases='zegrep zfgrep';; \
82           *) continue;; \
83           esac; \
84           transform='$(transform)'; \
85           test "X$$prog" = "X$$prog_ext" || \
86             transform="$$transform"';s/$$/$(EXEEXT)/'; \
87           source=$(DESTDIR)$(bindir)/`echo "$$prog"|sed "$$transform"`; \
88           for alias in $$aliases; do \
89             dest=$(DESTDIR)$(bindir)/`echo "$$alias"|sed "$$transform"`; \
90             (set -x; \
91              rm -f "$$dest" && \
92              case $@ in \
93              install-exec-hook) \
94                for ln in ln "$(LN_S)"; do \
95                  $$ln "$$source" "$$dest" && break; \
96                done;; \
97              esac \
98             ) || exit; \
99           done; \
100         done
101
102 uninstall-local: remove-installed-links
103
104 MAINTAINERCLEANFILES = gzip.doc
105
106 MOSTLYCLEANFILES = _match.s gzexe zdiff zforce zgrep zless zmore znew