]> git.cworth.org Git - gzip/blob - Makefile.am
Imported Upstream version 1.3.2
[gzip] / Makefile.am
1 # Make gzip (GNU zip).
2
3 ## Copyright (C) 1999, 2001 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         cd $(DESTDIR)$(bindir) && { ln gzip  gunzip || $(LN_S) gzip  gunzip; }
76         cd $(DESTDIR)$(bindir) && { ln gzip  zcat   || $(LN_S) gzip  zcat  ; }
77         cd $(DESTDIR)$(bindir) && { ln zdiff zcmp   || $(LN_S) zdiff zcmp  ; }
78         cd $(DESTDIR)$(bindir) && { ln zgrep zegrep || $(LN_S) zgrep zegrep; }
79         cd $(DESTDIR)$(bindir) && { ln zgrep zfgrep || $(LN_S) zgrep zfgrep; }
80
81 uninstall-local: remove-installed-links
82
83 remove-installed-links:
84         cd $(DESTDIR)$(bindir) && rm -f gunzip zcat zcmp zegrep zfgrep
85
86
87 MAINTAINERCLEANFILES = gzip.doc
88
89 MOSTLYCLEANFILES = _match.s gzexe zdiff zforce zgrep zless zmore znew