File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / sudo / zlib / Makefile.in
Revision 1.1.1.3 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Sun Jun 15 16:12:55 2014 UTC (10 years ago) by misho
Branches: sudo, MAIN
CVS tags: v1_8_10p3_0, v1_8_10p3, HEAD
sudo v 1.8.10p3

    1: #
    2: # Copyright (c) 2011-2014 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: cross_compiling = @CROSS_COMPILING@
   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
   38: DEFS = @OSDEFS@ @NO_VIZ@
   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: cppcheck:
   78: 
   79: check:
   80: 
   81: clean:
   82: 	-$(LIBTOOL) --mode=clean rm -f *.lo *.o *.la *.a stamp-* core *.core core.*
   83: 
   84: mostlyclean: clean
   85: 
   86: distclean: clean
   87: 	-rm -rf Makefile .libs zconf.h
   88: 
   89: clobber: distclean
   90: 
   91: realclean: distclean
   92: 	rm -f TAGS tags
   93: 
   94: cleandir: realclean
   95: 
   96: # Autogenerated dependencies, do not modify
   97: adler32.lo: $(srcdir)/adler32.c $(srcdir)/zlib.h $(srcdir)/zutil.h ./zconf.h
   98: 	$(LIBTOOL) --mode=compile $(CC) -c -o $@ $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/adler32.c
   99: compress.lo: $(srcdir)/compress.c $(srcdir)/zlib.h ./zconf.h
  100: 	$(LIBTOOL) --mode=compile $(CC) -c -o $@ $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/compress.c
  101: crc32.lo: $(srcdir)/crc32.c $(srcdir)/crc32.h $(srcdir)/zlib.h \
  102:           $(srcdir)/zutil.h ./zconf.h
  103: 	$(LIBTOOL) --mode=compile $(CC) -c -o $@ $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/crc32.c
  104: deflate.lo: $(srcdir)/deflate.c $(srcdir)/deflate.h $(srcdir)/zlib.h \
  105:             $(srcdir)/zutil.h ./zconf.h
  106: 	$(LIBTOOL) --mode=compile $(CC) -c -o $@ $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/deflate.c
  107: gzclose.lo: $(srcdir)/gzclose.c $(srcdir)/gzguts.h $(srcdir)/zlib.h ./zconf.h
  108: 	$(LIBTOOL) --mode=compile $(CC) -c -o $@ $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/gzclose.c
  109: gzlib.lo: $(srcdir)/gzlib.c $(srcdir)/gzguts.h $(srcdir)/zlib.h ./zconf.h
  110: 	$(LIBTOOL) --mode=compile $(CC) -c -o $@ $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/gzlib.c
  111: gzread.lo: $(srcdir)/gzread.c $(srcdir)/gzguts.h $(srcdir)/zlib.h ./zconf.h
  112: 	$(LIBTOOL) --mode=compile $(CC) -c -o $@ $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/gzread.c
  113: gzwrite.lo: $(srcdir)/gzwrite.c $(srcdir)/gzguts.h $(srcdir)/zlib.h ./zconf.h
  114: 	$(LIBTOOL) --mode=compile $(CC) -c -o $@ $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/gzwrite.c
  115: infback.lo: $(srcdir)/infback.c $(srcdir)/inffast.h $(srcdir)/inffixed.h \
  116:             $(srcdir)/inflate.h $(srcdir)/inftrees.h $(srcdir)/zlib.h \
  117:             $(srcdir)/zutil.h ./zconf.h
  118: 	$(LIBTOOL) --mode=compile $(CC) -c -o $@ $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/infback.c
  119: inffast.lo: $(srcdir)/inffast.c $(srcdir)/inffast.h $(srcdir)/inflate.h \
  120:             $(srcdir)/inftrees.h $(srcdir)/zlib.h $(srcdir)/zutil.h ./zconf.h
  121: 	$(LIBTOOL) --mode=compile $(CC) -c -o $@ $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/inffast.c
  122: inflate.lo: $(srcdir)/inflate.c $(srcdir)/inffast.h $(srcdir)/inffixed.h \
  123:             $(srcdir)/inflate.h $(srcdir)/inftrees.h $(srcdir)/zlib.h \
  124:             $(srcdir)/zutil.h ./zconf.h
  125: 	$(LIBTOOL) --mode=compile $(CC) -c -o $@ $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/inflate.c
  126: inftrees.lo: $(srcdir)/inftrees.c $(srcdir)/inftrees.h $(srcdir)/zlib.h \
  127:              $(srcdir)/zutil.h ./zconf.h
  128: 	$(LIBTOOL) --mode=compile $(CC) -c -o $@ $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/inftrees.c
  129: trees.lo: $(srcdir)/trees.c $(srcdir)/deflate.h $(srcdir)/trees.h \
  130:           $(srcdir)/zlib.h $(srcdir)/zutil.h ./zconf.h
  131: 	$(LIBTOOL) --mode=compile $(CC) -c -o $@ $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/trees.c
  132: uncompr.lo: $(srcdir)/uncompr.c $(srcdir)/zlib.h ./zconf.h
  133: 	$(LIBTOOL) --mode=compile $(CC) -c -o $@ $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/uncompr.c
  134: zutil.lo: $(srcdir)/zutil.c $(srcdir)/zlib.h $(srcdir)/zutil.h ./zconf.h
  135: 	$(LIBTOOL) --mode=compile $(CC) -c -o $@ $(CPPFLAGS) $(CFLAGS) $(DEFS) $(srcdir)/zutil.c

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