Annotation of embedaddon/sudo/zlib/Makefile.in, revision 1.1.1.2

1.1       misho       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@
1.1.1.2 ! misho      25: cross_compiling = @CROSS_COMPILING@
1.1       misho      26: 
                     27: # Compiler & tools to use
                     28: CC = @CC@
                     29: LIBTOOL = @LIBTOOL@
                     30: 
                     31: # C preprocessor flags
                     32: CPPFLAGS = -I. -I$(srcdir)
                     33: 
                     34: # Usually -O and/or -g
                     35: CFLAGS = @CFLAGS@
                     36: 
                     37: # OS dependent defines
1.1.1.2 ! misho      38: DEFS = @OSDEFS@ @NO_VIZ@
1.1       misho      39: 
                     40: #### End of system configuration section. ####
                     41: 
                     42: SHELL = @SHELL@
                     43: 
                     44: LTOBJS = adler32.lo compress.lo crc32.lo deflate.lo gzclose.lo gzlib.lo \
                     45:         gzread.lo gzwrite.lo infback.lo inffast.lo inflate.lo inftrees.lo \
                     46:         trees.lo uncompr.lo zutil.lo
                     47: 
                     48: all: libz.la
                     49: 
                     50: Makefile: $(srcdir)/Makefile.in
                     51:        (cd $(top_builddir) && ./config.status --file zlib/Makefile)
                     52: 
                     53: .SUFFIXES: .c .h .lo
                     54: 
                     55: .c.lo:
                     56:        $(LIBTOOL) --mode=compile $(CC) -c -o $@ $(CPPFLAGS) $(CFLAGS) $(DEFS) $<
                     57: 
                     58: libz.la: $(LTOBJS)
                     59:        $(LIBTOOL) --mode=link $(CC) -o $@ $(LTOBJS) -no-install
                     60: 
                     61: pre-install:
                     62: 
                     63: install:
                     64: 
                     65: install-dirs:
                     66: 
                     67: install-binaries:
                     68: 
                     69: install-includes:
                     70: 
                     71: install-doc:
                     72: 
                     73: install-plugin:
                     74: 
                     75: uninstall:
                     76: 
                     77: check:
                     78: 
                     79: clean:
                     80:        -$(LIBTOOL) --mode=clean rm -f *.lo *.o *.la *.a stamp-* core *.core core.*
                     81: 
                     82: mostlyclean: clean
                     83: 
                     84: distclean: clean
                     85:        -rm -rf Makefile .libs zconf.h
                     86: 
                     87: clobber: distclean
                     88: 
                     89: realclean: distclean
                     90:        rm -f TAGS tags
                     91: 
                     92: cleandir: realclean
                     93: 
                     94: # Autogenerated dependencies, do not modify
                     95: adler32.lo: $(srcdir)/adler32.c $(srcdir)/zutil.h $(srcdir)/zlib.h ./zconf.h
                     96:        $(LIBTOOL) --mode=compile $(CC) -c -o $@ $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/adler32.c
                     97: compress.lo: $(srcdir)/compress.c $(srcdir)/zlib.h ./zconf.h
                     98:        $(LIBTOOL) --mode=compile $(CC) -c -o $@ $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/compress.c
                     99: crc32.lo: $(srcdir)/crc32.c $(srcdir)/zutil.h $(srcdir)/zlib.h ./zconf.h \
                    100:           $(srcdir)/crc32.h
                    101:        $(LIBTOOL) --mode=compile $(CC) -c -o $@ $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/crc32.c
                    102: deflate.lo: $(srcdir)/deflate.c $(srcdir)/deflate.h $(srcdir)/zutil.h \
                    103:             $(srcdir)/zlib.h ./zconf.h
                    104:        $(LIBTOOL) --mode=compile $(CC) -c -o $@ $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/deflate.c
                    105: gzclose.lo: $(srcdir)/gzclose.c $(srcdir)/gzguts.h $(srcdir)/zlib.h ./zconf.h
                    106:        $(LIBTOOL) --mode=compile $(CC) -c -o $@ $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/gzclose.c
                    107: gzlib.lo: $(srcdir)/gzlib.c $(srcdir)/gzguts.h $(srcdir)/zlib.h ./zconf.h
                    108:        $(LIBTOOL) --mode=compile $(CC) -c -o $@ $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/gzlib.c
                    109: gzread.lo: $(srcdir)/gzread.c $(srcdir)/gzguts.h $(srcdir)/zlib.h ./zconf.h
                    110:        $(LIBTOOL) --mode=compile $(CC) -c -o $@ $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/gzread.c
                    111: gzwrite.lo: $(srcdir)/gzwrite.c $(srcdir)/gzguts.h $(srcdir)/zlib.h ./zconf.h
                    112:        $(LIBTOOL) --mode=compile $(CC) -c -o $@ $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/gzwrite.c
                    113: infback.lo: $(srcdir)/infback.c $(srcdir)/zutil.h $(srcdir)/zlib.h ./zconf.h \
                    114:             $(srcdir)/inftrees.h $(srcdir)/inflate.h $(srcdir)/inffast.h \
                    115:             $(srcdir)/inffixed.h
                    116:        $(LIBTOOL) --mode=compile $(CC) -c -o $@ $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/infback.c
                    117: inffast.lo: $(srcdir)/inffast.c $(srcdir)/zutil.h $(srcdir)/zlib.h ./zconf.h \
                    118:             $(srcdir)/inftrees.h $(srcdir)/inflate.h $(srcdir)/inffast.h
                    119:        $(LIBTOOL) --mode=compile $(CC) -c -o $@ $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/inffast.c
                    120: inflate.lo: $(srcdir)/inflate.c $(srcdir)/zutil.h $(srcdir)/zlib.h ./zconf.h \
                    121:             $(srcdir)/inftrees.h $(srcdir)/inflate.h $(srcdir)/inffast.h \
                    122:             $(srcdir)/inffixed.h
                    123:        $(LIBTOOL) --mode=compile $(CC) -c -o $@ $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/inflate.c
                    124: inftrees.lo: $(srcdir)/inftrees.c $(srcdir)/zutil.h $(srcdir)/zlib.h ./zconf.h \
                    125:              $(srcdir)/inftrees.h
                    126:        $(LIBTOOL) --mode=compile $(CC) -c -o $@ $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/inftrees.c
                    127: trees.lo: $(srcdir)/trees.c $(srcdir)/deflate.h $(srcdir)/zutil.h \
                    128:           $(srcdir)/zlib.h ./zconf.h $(srcdir)/trees.h
                    129:        $(LIBTOOL) --mode=compile $(CC) -c -o $@ $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/trees.c
                    130: uncompr.lo: $(srcdir)/uncompr.c $(srcdir)/zlib.h ./zconf.h
                    131:        $(LIBTOOL) --mode=compile $(CC) -c -o $@ $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/uncompr.c
                    132: zutil.lo: $(srcdir)/zutil.c $(srcdir)/zutil.h $(srcdir)/zlib.h ./zconf.h
                    133:        $(LIBTOOL) --mode=compile $(CC) -c -o $@ $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/zutil.c

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>