update docs and configure options
[debian/sudo] / zlib / Makefile.in
1 #
2 # Copyright (c) 2011 Todd C. Miller <Todd.Miller@courtesan.com>
3 #
4 # Permission to use, copy, modify, and distribute this software for any
5 # purpose with or without fee is hereby granted, provided that the above
6 # copyright notice and this permission notice appear in all copies.
7 #
8 # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
16 #
17 # @configure_input@
18 #
19
20 #### Start of system configuration section. ####
21
22 srcdir = @srcdir@
23 top_builddir = @top_builddir@
24 top_srcdir = @top_srcdir@
25
26 # Compiler & tools to use
27 CC = @CC@
28 LIBTOOL = @LIBTOOL@
29
30 # C preprocessor flags
31 CPPFLAGS = -I. -I$(srcdir)
32
33 # Usually -O and/or -g
34 CFLAGS = @CFLAGS@
35
36 # OS dependent defines
37 DEFS = @OSDEFS@
38
39 #### End of system configuration section. ####
40
41 SHELL = @SHELL@
42
43 LTOBJS = adler32.lo compress.lo crc32.lo deflate.lo gzclose.lo gzlib.lo \
44          gzread.lo gzwrite.lo infback.lo inffast.lo inflate.lo inftrees.lo \
45          trees.lo uncompr.lo zutil.lo
46
47 all: libz.la
48
49 Makefile: $(srcdir)/Makefile.in
50         (cd $(top_builddir) && ./config.status --file zlib/Makefile)
51
52 .SUFFIXES: .c .h .lo
53
54 .c.lo:
55         $(LIBTOOL) --mode=compile $(CC) -c -o $@ $(CPPFLAGS) $(CFLAGS) $(DEFS) $<
56
57 libz.la: $(LTOBJS)
58         $(LIBTOOL) --mode=link $(CC) -o $@ $(LTOBJS) -no-install
59
60 # Dependencies
61 adler32.lo: $(srcdir)/zutil.h $(srcdir)/zlib.h ./zconf.h
62         $(LIBTOOL) --mode=compile $(CC) -c -o $@ $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/adler32.c
63 compress.lo: $(srcdir)/zlib.h ./zconf.h
64         $(LIBTOOL) --mode=compile $(CC) -c -o $@ $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/compress.c
65 crc32.lo: $(srcdir)/zutil.h $(srcdir)/zlib.h ./zconf.h $(srcdir)/crc32.h
66         $(LIBTOOL) --mode=compile $(CC) -c -o $@ $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/crc32.c
67 deflate.lo: $(srcdir)/deflate.h $(srcdir)/zutil.h $(srcdir)/zlib.h ./zconf.h
68         $(LIBTOOL) --mode=compile $(CC) -c -o $@ $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/deflate.c
69 gzclose.lo: $(srcdir)/zlib.h ./zconf.h $(srcdir)/gzguts.h
70         $(LIBTOOL) --mode=compile $(CC) -c -o $@ $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/gzclose.c
71 gzlib.lo: $(srcdir)/zlib.h ./zconf.h $(srcdir)/gzguts.h
72         $(LIBTOOL) --mode=compile $(CC) -c -o $@ $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/gzlib.c
73 gzread.lo: $(srcdir)/zlib.h ./zconf.h $(srcdir)/gzguts.h
74         $(LIBTOOL) --mode=compile $(CC) -c -o $@ $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/gzread.c
75 gzwrite.lo: $(srcdir)/zlib.h ./zconf.h $(srcdir)/gzguts.h
76         $(LIBTOOL) --mode=compile $(CC) -c -o $@ $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/gzwrite.c
77 infback.lo: $(srcdir)/zutil.h $(srcdir)/zlib.h ./zconf.h $(srcdir)/inftrees.h $(srcdir)/inflate.h $(srcdir)/inffast.h $(srcdir)/inffixed.h
78         $(LIBTOOL) --mode=compile $(CC) -c -o $@ $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/infback.c
79 inffast.lo: $(srcdir)/zutil.h $(srcdir)/zlib.h ./zconf.h $(srcdir)/inftrees.h $(srcdir)/inflate.h $(srcdir)/inffast.h
80         $(LIBTOOL) --mode=compile $(CC) -c -o $@ $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/inffast.c
81 inflate.lo: $(srcdir)/zutil.h $(srcdir)/zlib.h ./zconf.h $(srcdir)/inftrees.h $(srcdir)/inflate.h $(srcdir)/inffast.h $(srcdir)/inffixed.h
82         $(LIBTOOL) --mode=compile $(CC) -c -o $@ $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/inflate.c
83 inftrees.lo: $(srcdir)/zutil.h $(srcdir)/zlib.h ./zconf.h $(srcdir)/inftrees.h
84         $(LIBTOOL) --mode=compile $(CC) -c -o $@ $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/inftrees.c
85 trees.lo: $(srcdir)/deflate.h $(srcdir)/zutil.h $(srcdir)/zlib.h ./zconf.h $(srcdir)/trees.h
86         $(LIBTOOL) --mode=compile $(CC) -c -o $@ $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/trees.c
87 uncompr.lo: $(srcdir)/zlib.h ./zconf.h
88         $(LIBTOOL) --mode=compile $(CC) -c -o $@ $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/uncompr.c
89 zutil.lo: $(srcdir)/zutil.h $(srcdir)/zlib.h ./zconf.h
90         $(LIBTOOL) --mode=compile $(CC) -c -o $@ $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/zutil.c
91
92 pre-install:
93
94 install:
95
96 install-dirs:
97
98 install-binaries:
99
100 install-includes:
101
102 install-doc:
103
104 install-plugin:
105
106 uninstall:
107
108 check:
109
110 clean:
111         -$(LIBTOOL) --mode=clean rm -f *.lo *.o *.la *.a stamp-* core *.core core.*
112
113 mostlyclean: clean
114
115 distclean: clean
116         -rm -rf Makefile .libs zconf.h
117
118 clobber: distclean
119
120 realclean: distclean
121         rm -f TAGS tags
122
123 cleandir: realclean