]> git.proxmox.com Git - mirror_edk2.git/blobdiff - AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/Makefile.in
edk2: Remove AppPkg, StdLib, StdLibPrivateInternalFiles
[mirror_edk2.git] / AppPkg / Applications / Python / Python-2.7.2 / Modules / zlib / Makefile.in
diff --git a/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/Makefile.in b/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/Makefile.in
deleted file mode 100644 (file)
index a4954c8..0000000
+++ /dev/null
@@ -1,154 +0,0 @@
-# Makefile for zlib\r
-# Copyright (C) 1995-2005 Jean-loup Gailly.\r
-# For conditions of distribution and use, see copyright notice in zlib.h\r
-\r
-# To compile and test, type:\r
-#    ./configure; make test\r
-# The call of configure is optional if you don't have special requirements\r
-# If you wish to build zlib as a shared library, use: ./configure -s\r
-\r
-# To use the asm code, type:\r
-#    cp contrib/asm?86/match.S ./match.S\r
-#    make LOC=-DASMV OBJA=match.o\r
-\r
-# To install /usr/local/lib/libz.* and /usr/local/include/zlib.h, type:\r
-#    make install\r
-# To install in $HOME instead of /usr/local, use:\r
-#    make install prefix=$HOME\r
-\r
-CC=cc\r
-\r
-CFLAGS=-O\r
-#CFLAGS=-O -DMAX_WBITS=14 -DMAX_MEM_LEVEL=7\r
-#CFLAGS=-g -DDEBUG\r
-#CFLAGS=-O3 -Wall -Wwrite-strings -Wpointer-arith -Wconversion \\r
-#           -Wstrict-prototypes -Wmissing-prototypes\r
-\r
-LDFLAGS=libz.a\r
-LDSHARED=$(CC)\r
-CPP=$(CC) -E\r
-\r
-LIBS=libz.a\r
-SHAREDLIB=libz.so\r
-SHAREDLIBV=libz.so.1.2.3\r
-SHAREDLIBM=libz.so.1\r
-\r
-AR=ar rc\r
-RANLIB=ranlib\r
-TAR=tar\r
-SHELL=/bin/sh\r
-EXE=\r
-\r
-prefix = /usr/local\r
-exec_prefix = ${prefix}\r
-libdir = ${exec_prefix}/lib\r
-includedir = ${prefix}/include\r
-mandir = ${prefix}/share/man\r
-man3dir = ${mandir}/man3\r
-\r
-OBJS = adler32.o compress.o crc32.o gzio.o uncompr.o deflate.o trees.o \\r
-       zutil.o inflate.o infback.o inftrees.o inffast.o\r
-\r
-OBJA =\r
-# to use the asm code: make OBJA=match.o\r
-\r
-TEST_OBJS = example.o minigzip.o\r
-\r
-all: example$(EXE) minigzip$(EXE)\r
-\r
-check: test\r
-test: all\r
-       @LD_LIBRARY_PATH=.:$(LD_LIBRARY_PATH) ; export LD_LIBRARY_PATH; \\r
-       echo hello world | ./minigzip | ./minigzip -d || \\r
-         echo '                *** minigzip test FAILED ***' ; \\r
-       if ./example; then \\r
-         echo '                *** zlib test OK ***'; \\r
-       else \\r
-         echo '                *** zlib test FAILED ***'; \\r
-       fi\r
-\r
-libz.a: $(OBJS) $(OBJA)\r
-       $(AR) $@ $(OBJS) $(OBJA)\r
-       -@ ($(RANLIB) $@ || true) >/dev/null 2>&1\r
-\r
-match.o: match.S\r
-       $(CPP) match.S > _match.s\r
-       $(CC) -c _match.s\r
-       mv _match.o match.o\r
-       rm -f _match.s\r
-\r
-$(SHAREDLIBV): $(OBJS)\r
-       $(LDSHARED) -o $@ $(OBJS)\r
-       rm -f $(SHAREDLIB) $(SHAREDLIBM)\r
-       ln -s $@ $(SHAREDLIB)\r
-       ln -s $@ $(SHAREDLIBM)\r
-\r
-example$(EXE): example.o $(LIBS)\r
-       $(CC) $(CFLAGS) -o $@ example.o $(LDFLAGS)\r
-\r
-minigzip$(EXE): minigzip.o $(LIBS)\r
-       $(CC) $(CFLAGS) -o $@ minigzip.o $(LDFLAGS)\r
-\r
-install: $(LIBS)\r
-       -@if [ ! -d $(exec_prefix) ]; then mkdir -p $(exec_prefix); fi\r
-       -@if [ ! -d $(includedir)  ]; then mkdir -p $(includedir); fi\r
-       -@if [ ! -d $(libdir)      ]; then mkdir -p $(libdir); fi\r
-       -@if [ ! -d $(man3dir)     ]; then mkdir -p $(man3dir); fi\r
-       cp zlib.h zconf.h $(includedir)\r
-       chmod 644 $(includedir)/zlib.h $(includedir)/zconf.h\r
-       cp $(LIBS) $(libdir)\r
-       cd $(libdir); chmod 755 $(LIBS)\r
-       -@(cd $(libdir); $(RANLIB) libz.a || true) >/dev/null 2>&1\r
-       cd $(libdir); if test -f $(SHAREDLIBV); then \\r
-         rm -f $(SHAREDLIB) $(SHAREDLIBM); \\r
-         ln -s $(SHAREDLIBV) $(SHAREDLIB); \\r
-         ln -s $(SHAREDLIBV) $(SHAREDLIBM); \\r
-         (ldconfig || true)  >/dev/null 2>&1; \\r
-       fi\r
-       cp zlib.3 $(man3dir)\r
-       chmod 644 $(man3dir)/zlib.3\r
-# The ranlib in install is needed on NeXTSTEP which checks file times\r
-# ldconfig is for Linux\r
-\r
-uninstall:\r
-       cd $(includedir); \\r
-       cd $(libdir); rm -f libz.a; \\r
-       if test -f $(SHAREDLIBV); then \\r
-         rm -f $(SHAREDLIBV) $(SHAREDLIB) $(SHAREDLIBM); \\r
-       fi\r
-       cd $(man3dir); rm -f zlib.3\r
-\r
-mostlyclean: clean\r
-clean:\r
-       rm -f *.o *~ example$(EXE) minigzip$(EXE) \\r
-          libz.* foo.gz so_locations \\r
-          _match.s maketree contrib/infback9/*.o\r
-\r
-maintainer-clean: distclean\r
-distclean: clean\r
-       cp -p Makefile.in Makefile\r
-       cp -p zconf.in.h zconf.h\r
-       rm -f .DS_Store\r
-\r
-tags:\r
-       etags *.[ch]\r
-\r
-depend:\r
-       makedepend -- $(CFLAGS) -- *.[ch]\r
-\r
-# DO NOT DELETE THIS LINE -- make depend depends on it.\r
-\r
-adler32.o: zlib.h zconf.h\r
-compress.o: zlib.h zconf.h\r
-crc32.o: crc32.h zlib.h zconf.h\r
-deflate.o: deflate.h zutil.h zlib.h zconf.h\r
-example.o: zlib.h zconf.h\r
-gzio.o: zutil.h zlib.h zconf.h\r
-inffast.o: zutil.h zlib.h zconf.h inftrees.h inflate.h inffast.h\r
-inflate.o: zutil.h zlib.h zconf.h inftrees.h inflate.h inffast.h\r
-infback.o: zutil.h zlib.h zconf.h inftrees.h inflate.h inffast.h\r
-inftrees.o: zutil.h zlib.h zconf.h inftrees.h\r
-minigzip.o: zlib.h zconf.h\r
-trees.o: deflate.h zutil.h zlib.h zconf.h trees.h\r
-uncompr.o: zlib.h zconf.h\r
-zutil.o: zutil.h zlib.h zconf.h\r