diff --git a/Makefile.am b/Makefile.am index d5854686f5..a53566107b 100644 --- a/Makefile.am +++ b/Makefile.am @@ -3,7 +3,7 @@ AUTOMAKE_OPTIONS = foreign -API_SUBDIRS = api lib boincglut apps +API_SUBDIRS = api lib boincglut apps zip if ENABLE_SERVER SERVER_SUBDIRS = db tools test py sched diff --git a/checkin_notes b/checkin_notes index 6d2787c4fb..33f1c3a03e 100755 --- a/checkin_notes +++ b/checkin_notes @@ -20026,3 +20026,26 @@ Rom 22 Nov 2004 gui_rpc_client.C, .h win_build/installerv2/ BOINC.ism + +Bruce 23 Nov 2004 UTC + - Build boinc zip compression library as part of normal ./configure && make process + - make install now installs libboinc_zip.a as part of normal make install + - Unix boinc client and boinc gui had the same name, eg boinc_4.56_i686-pc-linux-gnu + I have changed this so that it is now boinc_client_4.56_i686-pc-linux-gnu and + boinc_gui_4.56_i686-pc-linux-gnu. If the change from boinc_ to boinc_client_ + causes any pain, please just modify CLIENT_BIN_FILENAME in configure.ac + - Removed -O3 as required compilation flag in building client gui. Only needed for + client (to optimize benchmarking routines). + - Removed un-necessary zip/configure.ac and zip/Makefile + - Added .cvsignore file for zip/ directory. + + configure.ac + Makefile.am + clientgui/ + Makefile.am + zip/ + Makefile.am + configure.ac (removed) + Makefile (removed) + .cvsignore (added) + diff --git a/clientgui/Makefile.am b/clientgui/Makefile.am index e32bff6518..a7339e5b74 100644 --- a/clientgui/Makefile.am +++ b/clientgui/Makefile.am @@ -6,9 +6,9 @@ include $(top_srcdir)/Makefile.incl # by default, "-static -static-libgcc" on linux. #STATIC_FLAGS=@STATIC_FLAGS@ -bin_PROGRAMS = boincgui +bin_PROGRAMS = boinc_gui -boincgui_SOURCES = \ +boinc_gui_SOURCES = \ BOINCBaseView.cpp \ BOINCGUIApp.cpp \ BOINCListCtrl.cpp \ @@ -34,12 +34,12 @@ boincgui_SOURCES = \ ../lib/parse.C \ ../lib/util.C -boincgui_CPPFLAGS = $(AM_CPPFLAGS) $(WX_CPPFLAGS) $(CLIENTGUIFLAGS) -O3 -boincgui_CXXFLAGS = $(AM_CXXFLAGS) $(WX_CXXFLAGS) $(CLIENTGUIFLAGS) -O3 -boincgui_LDADD = $(PTHREAD_LIBS) $(WX_LIBS) $(CLIENTGUILIBS) +boinc_gui_CPPFLAGS = $(AM_CPPFLAGS) $(WX_CPPFLAGS) $(CLIENTGUIFLAGS) +boinc_gui_CXXFLAGS = $(AM_CXXFLAGS) $(WX_CXXFLAGS) $(CLIENTGUIFLAGS) +boinc_gui_LDADD = $(PTHREAD_LIBS) $(WX_LIBS) $(CLIENTGUILIBS) -all-local: client-bin -client-bin: @CLIENT_BIN_FILENAME@ +all-local: client_gui-bin +client_gui-bin: @CLIENT_GUI_BIN_FILENAME@ win_config.h: $(top_srcdir)/config.h grep '#define.*BOINC.*VERSION' $^ > $@ @@ -47,11 +47,11 @@ win_config.h: $(top_srcdir)/config.h version: win_config.h # make a hard link to the client name. -@CLIENT_BIN_FILENAME@: boincgui +@CLIENT_GUI_BIN_FILENAME@: boinc_gui rm -f $@ ln $? $@ clean-local: - rm -f @CLIENT_BIN_FILENAME@ + rm -f @CLIENT_GUI_BIN_FILENAME@ .PHONY: version diff --git a/configure.ac b/configure.ac index 6cbfc6fe81..fd17a30ccb 100644 --- a/configure.ac +++ b/configure.ac @@ -90,7 +90,8 @@ AC_DEFINE_UNQUOTED([BOINC_VERSION_STRING], "$BOINC_VERSION_STRING", [String repr AC_DEFINE_UNQUOTED([BOINC_MAJOR_VERSION], $BOINC_MAJOR_VERSION, [Major part of BOINC version number]) AC_DEFINE_UNQUOTED([BOINC_MINOR_VERSION], $BOINC_MINOR_VERSION, [Minor part of BOINC version number]) AC_DEFINE_UNQUOTED([HOSTTYPE], "$host", [Host for this compilation]) -AC_SUBST([CLIENT_BIN_FILENAME],[boinc_]AC_PACKAGE_VERSION[_$host${EXEEXT}]) +AC_SUBST([CLIENT_BIN_FILENAME],[boinc_client_]AC_PACKAGE_VERSION[_$host${EXEEXT}]) +AC_SUBST([CLIENT_GUI_BIN_FILENAME],[boinc_gui_]AC_PACKAGE_VERSION[_$host${EXEEXT}]) AC_SUBST([TOP_BUILD_DIR], [`pwd`]) AC_SUBST([TOP_SOURCE_DIR], [`(cd \`dirname "$0"\` && pwd)`]) @@ -264,32 +265,34 @@ dnl fi dnl echo "checking static flags... ${STATIC_FLAGS:-(none)}"] dnl AC_SUBST(STATIC_FLAGS) -AC_CONFIG_FILES([Makefile - RSAEuro/source/Makefile - RSAEuro/Makefile +AC_CONFIG_FILES([ api/Makefile - boincglut/Makefile - boincglut/lib/Makefile - boincglut/lib/glut/Makefile - boincglut/include/Makefile apps/Makefile - client/Makefile + boincglut/include/Makefile + boincglut/lib/glut/Makefile + boincglut/lib/Makefile + boincglut/Makefile clientgui/Makefile + client/Makefile + client/win/boinc_path_config.py:py/Boinc/boinc_path_config.py.in db/Makefile lib/Makefile + Makefile + py/Boinc/boinc_path_config.py:py/Boinc/boinc_path_config.py.in + py/Boinc/Makefile + py/boinc_path_config.py:py/Boinc/boinc_path_config.py.in + py/Boinc/version.py + py/Makefile + RSAEuro/Makefile + RSAEuro/source/Makefile + sched/boinc_path_config.py:py/Boinc/boinc_path_config.py.in sched/Makefile - tools/Makefile + test/boinc_path_config.py:py/Boinc/boinc_path_config.py.in test/Makefile test/version.inc - py/Makefile - py/Boinc/Makefile - py/Boinc/version.py - py/Boinc/boinc_path_config.py:py/Boinc/boinc_path_config.py.in - py/boinc_path_config.py:py/Boinc/boinc_path_config.py.in - client/win/boinc_path_config.py:py/Boinc/boinc_path_config.py.in - sched/boinc_path_config.py:py/Boinc/boinc_path_config.py.in tools/boinc_path_config.py:py/Boinc/boinc_path_config.py.in - test/boinc_path_config.py:py/Boinc/boinc_path_config.py.in + tools/Makefile + zip/Makefile ]) dnl AC_CONFIG_HEADER([config.h]) diff --git a/zip/.cvsignore b/zip/.cvsignore new file mode 100644 index 0000000000..70845e08eb --- /dev/null +++ b/zip/.cvsignore @@ -0,0 +1 @@ +Makefile.in diff --git a/zip/Makefile b/zip/Makefile deleted file mode 100644 index ce7c60ffa2..0000000000 --- a/zip/Makefile +++ /dev/null @@ -1,1083 +0,0 @@ -# Makefile.in generated by automake 1.8.5 from Makefile.am. -# Makefile. Generated from Makefile.in by configure. - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004 Free Software Foundation, Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - - - -SOURCES = $(libboinc_zip_a_SOURCES) - -srcdir = . -top_srcdir = . - -pkgdatadir = $(datadir)/boinc_zip -pkglibdir = $(libdir)/boinc_zip -pkgincludedir = $(includedir)/boinc_zip -top_builddir = . -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -INSTALL = /usr/bin/install -c -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = i686-pc-linux-gnu -host_triplet = i686-pc-linux-gnu -target_triplet = i686-pc-linux-gnu -DIST_COMMON = $(am__configure_deps) $(srcdir)/../config.guess \ - $(srcdir)/../config.sub $(srcdir)/../depcomp \ - $(srcdir)/../install-sh $(srcdir)/../missing \ - $(srcdir)/../mkinstalldirs $(srcdir)/Makefile.am \ - $(srcdir)/Makefile.in $(srcdir)/config.h.in \ - $(top_srcdir)/configure -subdir = . -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ - configure.lineno configure.status.lineno -mkinstalldirs = $(SHELL) $(top_srcdir)/../mkinstalldirs -CONFIG_HEADER = config.h -CONFIG_CLEAN_FILES = -LIBRARIES = $(noinst_LIBRARIES) -AR = ar -ARFLAGS = cru -libboinc_zip_a_AR = $(AR) $(ARFLAGS) -libboinc_zip_a_LIBADD = -am_libboinc_zip_a_OBJECTS = boinc_zip.$(OBJEXT) apihelp.$(OBJEXT) \ - crc32.$(OBJEXT) crctab.$(OBJEXT) envargs.$(OBJEXT) \ - explode.$(OBJEXT) extract.$(OBJEXT) fileio.$(OBJEXT) \ - globals.$(OBJEXT) inflate.$(OBJEXT) list.$(OBJEXT) \ - match.$(OBJEXT) process.$(OBJEXT) ttyio.$(OBJEXT) \ - unreduce.$(OBJEXT) unshrink.$(OBJEXT) unzip.$(OBJEXT) \ - zipinfo.$(OBJEXT) deflate.$(OBJEXT) trees.$(OBJEXT) \ - util.$(OBJEXT) z_fileio.$(OBJEXT) z_globals.$(OBJEXT) \ - zip.$(OBJEXT) zipfile.$(OBJEXT) zipup.$(OBJEXT) \ - z_unix.$(OBJEXT) unix.$(OBJEXT) -libboinc_zip_a_OBJECTS = $(am_libboinc_zip_a_OBJECTS) -DEFAULT_INCLUDES = -I. -I$(srcdir) -I. -depcomp = $(SHELL) $(top_srcdir)/../depcomp -am__depfiles_maybe = depfiles -DEP_FILES = ./$(DEPDIR)/apihelp.Po \ - ./$(DEPDIR)/boinc_zip.Po ./$(DEPDIR)/crc32.Po \ - ./$(DEPDIR)/crctab.Po ./$(DEPDIR)/deflate.Po \ - ./$(DEPDIR)/envargs.Po ./$(DEPDIR)/explode.Po \ - ./$(DEPDIR)/extract.Po ./$(DEPDIR)/fileio.Po \ - ./$(DEPDIR)/globals.Po ./$(DEPDIR)/inflate.Po \ - ./$(DEPDIR)/list.Po ./$(DEPDIR)/match.Po \ - ./$(DEPDIR)/process.Po ./$(DEPDIR)/trees.Po \ - ./$(DEPDIR)/ttyio.Po ./$(DEPDIR)/unix.Po \ - ./$(DEPDIR)/unreduce.Po ./$(DEPDIR)/unshrink.Po \ - ./$(DEPDIR)/unzip.Po ./$(DEPDIR)/util.Po \ - ./$(DEPDIR)/z_fileio.Po ./$(DEPDIR)/z_globals.Po \ - ./$(DEPDIR)/z_unix.Po ./$(DEPDIR)/zip.Po \ - ./$(DEPDIR)/zipfile.Po ./$(DEPDIR)/zipinfo.Po \ - ./$(DEPDIR)/zipup.Po -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ -CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -CXXLD = $(CXX) -CXXLINK = $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \ - -o $@ -SOURCES = $(libboinc_zip_a_SOURCES) -DIST_SOURCES = $(libboinc_zip_a_SOURCES) -ETAGS = etags -CTAGS = ctags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -distdir = $(PACKAGE)-$(VERSION) -top_distdir = $(distdir) -am__remove_distdir = \ - { test ! -d $(distdir) \ - || { find $(distdir) -type d ! -perm -200 -exec chmod u+w {} ';' \ - && rm -fr $(distdir); }; } -DIST_ARCHIVES = $(distdir).tar.gz $(distdir).zip -GZIP_ENV = --best -distuninstallcheck_listfiles = find . -type f -print -distcleancheck_listfiles = find . -type f -print -ACLOCAL = ${SHELL} /var/home/carlc/cpdnboinc/boinc/missing --run aclocal-1.8 -AMDEP_FALSE = # -AMDEP_TRUE = -AMTAR = ${SHELL} /var/home/carlc/cpdnboinc/boinc/missing --run tar -AUTOCONF = ${SHELL} /var/home/carlc/cpdnboinc/boinc/missing --run autoconf -AUTOHEADER = ${SHELL} /var/home/carlc/cpdnboinc/boinc/missing --run autoheader -AUTOMAKE = ${SHELL} /var/home/carlc/cpdnboinc/boinc/missing --run automake-1.8 -AWK = gawk -CC = gcc -CCDEPMODE = depmode=gcc3 -CFLAGS = -g -O2 -CLIENT_BIN_FILENAME = boinc_1.00_i686-pc-linux-gnu -CPP = gcc -E -CPPFLAGS = -CXX = g++ -CXXDEPMODE = depmode=gcc3 -CXXFLAGS = -g -O2 -CYGPATH_W = echo -DEFS = -DHAVE_CONFIG_H -DEPDIR = .deps -ECHO_C = -ECHO_N = -n -ECHO_T = -EGREP = grep -E -EXEEXT = -INSTALL_DATA = ${INSTALL} -m 644 -INSTALL_PROGRAM = ${INSTALL} -INSTALL_SCRIPT = ${INSTALL} -INSTALL_STRIP_PROGRAM = ${SHELL} $(install_sh) -c -s -LDFLAGS = -LIBOBJS = -LIBS = -lz -lnsl -lm -LTLIBOBJS = -MAINT = # -MAINTAINER_MODE_FALSE = -MAINTAINER_MODE_TRUE = # -MAJOR_VERSION = 1 -MAKEINFO = ${SHELL} /var/home/carlc/cpdnboinc/boinc/missing --run makeinfo -MINOR_VERSION = -OBJEXT = o -PACKAGE = boinc_zip -PACKAGE_BUGREPORT = -PACKAGE_NAME = BOINC_ZIP -PACKAGE_STRING = BOINC_ZIP 1.00 -PACKAGE_TARNAME = boinc_zip -PACKAGE_VERSION = 1.00 -PATH_SEPARATOR = : -RANLIB = ranlib -SET_MAKE = -SHELL = /bin/sh -STRIP = -TOP_BUILD_DIR = /var/home/carlc/cpdnboinc/boinc/zip -TOP_SOURCE_DIR = /var/home/carlc/cpdnboinc/boinc/zip -VERSION = 1.00 -ac_ct_CC = gcc -ac_ct_CXX = g++ -ac_ct_RANLIB = ranlib -ac_ct_STRIP = -am__fastdepCC_FALSE = # -am__fastdepCC_TRUE = -am__fastdepCXX_FALSE = # -am__fastdepCXX_TRUE = -am__include = include -am__leading_dot = . -am__quote = -bindir = ${exec_prefix}/bin -build = i686-pc-linux-gnu -build_alias = -build_cpu = i686 -build_os = linux-gnu -build_vendor = pc -datadir = ${prefix}/share -exec_prefix = ${prefix} -host = i686-pc-linux-gnu -host_alias = -host_cpu = i686 -host_os = linux-gnu -host_vendor = pc -includedir = ${prefix}/include -infodir = ${prefix}/info -install_sh = /var/home/carlc/cpdnboinc/boinc/install-sh -libdir = ${exec_prefix}/lib -libexecdir = ${exec_prefix}/libexec -localstatedir = ${prefix}/var -mandir = ${prefix}/man -mkdir_p = mkdir -p -- . -oldincludedir = /usr/include -prefix = /usr/local -program_transform_name = s,x,x, -sbindir = ${exec_prefix}/sbin -sharedstatedir = ${prefix}/com -sysconfdir = ${prefix}/etc -target = i686-pc-linux-gnu -target_alias = -target_cpu = i686 -target_os = linux-gnu -target_vendor = pc -AM_CPPFLAGS = -pthread \ - -I./zip \ - -I./unzip \ - -I../lib \ - -DUNIX - -noinst_LIBRARIES = libboinc_zip.a -libboinc_zip_a_SOURCES = boinc_zip.cpp \ -./unzip/apihelp.c \ -./unzip/crc32.c \ -./unzip/crctab.c \ -./unzip/envargs.c \ -./unzip/explode.c \ -./unzip/extract.c \ -./unzip/fileio.c \ -./unzip/globals.c \ -./unzip/inflate.c \ -./unzip/list.c \ -./unzip/match.c \ -./unzip/process.c \ -./unzip/ttyio.c \ -./unzip/unreduce.c \ -./unzip/unshrink.c \ -./unzip/unzip.c \ -./unzip/zipinfo.c \ -./zip/deflate.c \ -./zip/trees.c \ -./zip/util.c \ -./zip/z_fileio.c \ -./zip/z_globals.c \ -./zip/zip.c \ -./zip/zipfile.c \ -./zip/zipup.c \ -./zip/unix/z_unix.c \ -./unzip/unix/unix.c - -all: config.h - $(MAKE) $(AM_MAKEFLAGS) all-am - -.SUFFIXES: -.SUFFIXES: .c .cpp .o .obj -am--refresh: - @: -$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - echo ' cd $(srcdir) && $(AUTOMAKE) --gnu '; \ - cd $(srcdir) && $(AUTOMAKE) --gnu \ - && exit 0; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \ - cd $(top_srcdir) && \ - $(AUTOMAKE) --gnu Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - echo ' $(SHELL) ./config.status'; \ - $(SHELL) ./config.status;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - $(SHELL) ./config.status --recheck - -$(top_srcdir)/configure: # $(am__configure_deps) - cd $(srcdir) && $(AUTOCONF) -$(ACLOCAL_M4): # $(am__aclocal_m4_deps) - cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) - -config.h: stamp-h1 - @if test ! -f $@; then \ - rm -f stamp-h1; \ - $(MAKE) stamp-h1; \ - else :; fi - -stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status - @rm -f stamp-h1 - cd $(top_builddir) && $(SHELL) ./config.status config.h -$(srcdir)/config.h.in: # $(am__configure_deps) - cd $(top_srcdir) && $(AUTOHEADER) - rm -f stamp-h1 - touch $@ - -distclean-hdr: - -rm -f config.h stamp-h1 - -clean-noinstLIBRARIES: - -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES) -libboinc_zip.a: $(libboinc_zip_a_OBJECTS) $(libboinc_zip_a_DEPENDENCIES) - -rm -f libboinc_zip.a - $(libboinc_zip_a_AR) libboinc_zip.a $(libboinc_zip_a_OBJECTS) $(libboinc_zip_a_LIBADD) - $(RANLIB) libboinc_zip.a - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -include ./$(DEPDIR)/apihelp.Po -include ./$(DEPDIR)/boinc_zip.Po -include ./$(DEPDIR)/crc32.Po -include ./$(DEPDIR)/crctab.Po -include ./$(DEPDIR)/deflate.Po -include ./$(DEPDIR)/envargs.Po -include ./$(DEPDIR)/explode.Po -include ./$(DEPDIR)/extract.Po -include ./$(DEPDIR)/fileio.Po -include ./$(DEPDIR)/globals.Po -include ./$(DEPDIR)/inflate.Po -include ./$(DEPDIR)/list.Po -include ./$(DEPDIR)/match.Po -include ./$(DEPDIR)/process.Po -include ./$(DEPDIR)/trees.Po -include ./$(DEPDIR)/ttyio.Po -include ./$(DEPDIR)/unix.Po -include ./$(DEPDIR)/unreduce.Po -include ./$(DEPDIR)/unshrink.Po -include ./$(DEPDIR)/unzip.Po -include ./$(DEPDIR)/util.Po -include ./$(DEPDIR)/z_fileio.Po -include ./$(DEPDIR)/z_globals.Po -include ./$(DEPDIR)/z_unix.Po -include ./$(DEPDIR)/zip.Po -include ./$(DEPDIR)/zipfile.Po -include ./$(DEPDIR)/zipinfo.Po -include ./$(DEPDIR)/zipup.Po - -.c.o: - if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ - then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi -# source='$<' object='$@' libtool=no \ -# depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' \ -# $(CCDEPMODE) $(depcomp) \ -# $(COMPILE) -c $< - -.c.obj: - if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ - then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi -# source='$<' object='$@' libtool=no \ -# depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' \ -# $(CCDEPMODE) $(depcomp) \ -# $(COMPILE) -c `$(CYGPATH_W) '$<'` - -apihelp.o: ./unzip/apihelp.c - if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT apihelp.o -MD -MP -MF "$(DEPDIR)/apihelp.Tpo" -c -o apihelp.o `test -f './unzip/apihelp.c' || echo '$(srcdir)/'`./unzip/apihelp.c; \ - then mv -f "$(DEPDIR)/apihelp.Tpo" "$(DEPDIR)/apihelp.Po"; else rm -f "$(DEPDIR)/apihelp.Tpo"; exit 1; fi -# source='./unzip/apihelp.c' object='apihelp.o' libtool=no \ -# depfile='$(DEPDIR)/apihelp.Po' tmpdepfile='$(DEPDIR)/apihelp.TPo' \ -# $(CCDEPMODE) $(depcomp) \ -# $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o apihelp.o `test -f './unzip/apihelp.c' || echo '$(srcdir)/'`./unzip/apihelp.c - -apihelp.obj: ./unzip/apihelp.c - if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT apihelp.obj -MD -MP -MF "$(DEPDIR)/apihelp.Tpo" -c -o apihelp.obj `if test -f './unzip/apihelp.c'; then $(CYGPATH_W) './unzip/apihelp.c'; else $(CYGPATH_W) '$(srcdir)/./unzip/apihelp.c'; fi`; \ - then mv -f "$(DEPDIR)/apihelp.Tpo" "$(DEPDIR)/apihelp.Po"; else rm -f "$(DEPDIR)/apihelp.Tpo"; exit 1; fi -# source='./unzip/apihelp.c' object='apihelp.obj' libtool=no \ -# depfile='$(DEPDIR)/apihelp.Po' tmpdepfile='$(DEPDIR)/apihelp.TPo' \ -# $(CCDEPMODE) $(depcomp) \ -# $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o apihelp.obj `if test -f './unzip/apihelp.c'; then $(CYGPATH_W) './unzip/apihelp.c'; else $(CYGPATH_W) '$(srcdir)/./unzip/apihelp.c'; fi` - -crc32.o: ./unzip/crc32.c - if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crc32.o -MD -MP -MF "$(DEPDIR)/crc32.Tpo" -c -o crc32.o `test -f './unzip/crc32.c' || echo '$(srcdir)/'`./unzip/crc32.c; \ - then mv -f "$(DEPDIR)/crc32.Tpo" "$(DEPDIR)/crc32.Po"; else rm -f "$(DEPDIR)/crc32.Tpo"; exit 1; fi -# source='./unzip/crc32.c' object='crc32.o' libtool=no \ -# depfile='$(DEPDIR)/crc32.Po' tmpdepfile='$(DEPDIR)/crc32.TPo' \ -# $(CCDEPMODE) $(depcomp) \ -# $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crc32.o `test -f './unzip/crc32.c' || echo '$(srcdir)/'`./unzip/crc32.c - -crc32.obj: ./unzip/crc32.c - if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crc32.obj -MD -MP -MF "$(DEPDIR)/crc32.Tpo" -c -o crc32.obj `if test -f './unzip/crc32.c'; then $(CYGPATH_W) './unzip/crc32.c'; else $(CYGPATH_W) '$(srcdir)/./unzip/crc32.c'; fi`; \ - then mv -f "$(DEPDIR)/crc32.Tpo" "$(DEPDIR)/crc32.Po"; else rm -f "$(DEPDIR)/crc32.Tpo"; exit 1; fi -# source='./unzip/crc32.c' object='crc32.obj' libtool=no \ -# depfile='$(DEPDIR)/crc32.Po' tmpdepfile='$(DEPDIR)/crc32.TPo' \ -# $(CCDEPMODE) $(depcomp) \ -# $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crc32.obj `if test -f './unzip/crc32.c'; then $(CYGPATH_W) './unzip/crc32.c'; else $(CYGPATH_W) '$(srcdir)/./unzip/crc32.c'; fi` - -crctab.o: ./unzip/crctab.c - if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crctab.o -MD -MP -MF "$(DEPDIR)/crctab.Tpo" -c -o crctab.o `test -f './unzip/crctab.c' || echo '$(srcdir)/'`./unzip/crctab.c; \ - then mv -f "$(DEPDIR)/crctab.Tpo" "$(DEPDIR)/crctab.Po"; else rm -f "$(DEPDIR)/crctab.Tpo"; exit 1; fi -# source='./unzip/crctab.c' object='crctab.o' libtool=no \ -# depfile='$(DEPDIR)/crctab.Po' tmpdepfile='$(DEPDIR)/crctab.TPo' \ -# $(CCDEPMODE) $(depcomp) \ -# $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crctab.o `test -f './unzip/crctab.c' || echo '$(srcdir)/'`./unzip/crctab.c - -crctab.obj: ./unzip/crctab.c - if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT crctab.obj -MD -MP -MF "$(DEPDIR)/crctab.Tpo" -c -o crctab.obj `if test -f './unzip/crctab.c'; then $(CYGPATH_W) './unzip/crctab.c'; else $(CYGPATH_W) '$(srcdir)/./unzip/crctab.c'; fi`; \ - then mv -f "$(DEPDIR)/crctab.Tpo" "$(DEPDIR)/crctab.Po"; else rm -f "$(DEPDIR)/crctab.Tpo"; exit 1; fi -# source='./unzip/crctab.c' object='crctab.obj' libtool=no \ -# depfile='$(DEPDIR)/crctab.Po' tmpdepfile='$(DEPDIR)/crctab.TPo' \ -# $(CCDEPMODE) $(depcomp) \ -# $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o crctab.obj `if test -f './unzip/crctab.c'; then $(CYGPATH_W) './unzip/crctab.c'; else $(CYGPATH_W) '$(srcdir)/./unzip/crctab.c'; fi` - -envargs.o: ./unzip/envargs.c - if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT envargs.o -MD -MP -MF "$(DEPDIR)/envargs.Tpo" -c -o envargs.o `test -f './unzip/envargs.c' || echo '$(srcdir)/'`./unzip/envargs.c; \ - then mv -f "$(DEPDIR)/envargs.Tpo" "$(DEPDIR)/envargs.Po"; else rm -f "$(DEPDIR)/envargs.Tpo"; exit 1; fi -# source='./unzip/envargs.c' object='envargs.o' libtool=no \ -# depfile='$(DEPDIR)/envargs.Po' tmpdepfile='$(DEPDIR)/envargs.TPo' \ -# $(CCDEPMODE) $(depcomp) \ -# $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o envargs.o `test -f './unzip/envargs.c' || echo '$(srcdir)/'`./unzip/envargs.c - -envargs.obj: ./unzip/envargs.c - if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT envargs.obj -MD -MP -MF "$(DEPDIR)/envargs.Tpo" -c -o envargs.obj `if test -f './unzip/envargs.c'; then $(CYGPATH_W) './unzip/envargs.c'; else $(CYGPATH_W) '$(srcdir)/./unzip/envargs.c'; fi`; \ - then mv -f "$(DEPDIR)/envargs.Tpo" "$(DEPDIR)/envargs.Po"; else rm -f "$(DEPDIR)/envargs.Tpo"; exit 1; fi -# source='./unzip/envargs.c' object='envargs.obj' libtool=no \ -# depfile='$(DEPDIR)/envargs.Po' tmpdepfile='$(DEPDIR)/envargs.TPo' \ -# $(CCDEPMODE) $(depcomp) \ -# $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o envargs.obj `if test -f './unzip/envargs.c'; then $(CYGPATH_W) './unzip/envargs.c'; else $(CYGPATH_W) '$(srcdir)/./unzip/envargs.c'; fi` - -explode.o: ./unzip/explode.c - if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT explode.o -MD -MP -MF "$(DEPDIR)/explode.Tpo" -c -o explode.o `test -f './unzip/explode.c' || echo '$(srcdir)/'`./unzip/explode.c; \ - then mv -f "$(DEPDIR)/explode.Tpo" "$(DEPDIR)/explode.Po"; else rm -f "$(DEPDIR)/explode.Tpo"; exit 1; fi -# source='./unzip/explode.c' object='explode.o' libtool=no \ -# depfile='$(DEPDIR)/explode.Po' tmpdepfile='$(DEPDIR)/explode.TPo' \ -# $(CCDEPMODE) $(depcomp) \ -# $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o explode.o `test -f './unzip/explode.c' || echo '$(srcdir)/'`./unzip/explode.c - -explode.obj: ./unzip/explode.c - if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT explode.obj -MD -MP -MF "$(DEPDIR)/explode.Tpo" -c -o explode.obj `if test -f './unzip/explode.c'; then $(CYGPATH_W) './unzip/explode.c'; else $(CYGPATH_W) '$(srcdir)/./unzip/explode.c'; fi`; \ - then mv -f "$(DEPDIR)/explode.Tpo" "$(DEPDIR)/explode.Po"; else rm -f "$(DEPDIR)/explode.Tpo"; exit 1; fi -# source='./unzip/explode.c' object='explode.obj' libtool=no \ -# depfile='$(DEPDIR)/explode.Po' tmpdepfile='$(DEPDIR)/explode.TPo' \ -# $(CCDEPMODE) $(depcomp) \ -# $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o explode.obj `if test -f './unzip/explode.c'; then $(CYGPATH_W) './unzip/explode.c'; else $(CYGPATH_W) '$(srcdir)/./unzip/explode.c'; fi` - -extract.o: ./unzip/extract.c - if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT extract.o -MD -MP -MF "$(DEPDIR)/extract.Tpo" -c -o extract.o `test -f './unzip/extract.c' || echo '$(srcdir)/'`./unzip/extract.c; \ - then mv -f "$(DEPDIR)/extract.Tpo" "$(DEPDIR)/extract.Po"; else rm -f "$(DEPDIR)/extract.Tpo"; exit 1; fi -# source='./unzip/extract.c' object='extract.o' libtool=no \ -# depfile='$(DEPDIR)/extract.Po' tmpdepfile='$(DEPDIR)/extract.TPo' \ -# $(CCDEPMODE) $(depcomp) \ -# $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o extract.o `test -f './unzip/extract.c' || echo '$(srcdir)/'`./unzip/extract.c - -extract.obj: ./unzip/extract.c - if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT extract.obj -MD -MP -MF "$(DEPDIR)/extract.Tpo" -c -o extract.obj `if test -f './unzip/extract.c'; then $(CYGPATH_W) './unzip/extract.c'; else $(CYGPATH_W) '$(srcdir)/./unzip/extract.c'; fi`; \ - then mv -f "$(DEPDIR)/extract.Tpo" "$(DEPDIR)/extract.Po"; else rm -f "$(DEPDIR)/extract.Tpo"; exit 1; fi -# source='./unzip/extract.c' object='extract.obj' libtool=no \ -# depfile='$(DEPDIR)/extract.Po' tmpdepfile='$(DEPDIR)/extract.TPo' \ -# $(CCDEPMODE) $(depcomp) \ -# $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o extract.obj `if test -f './unzip/extract.c'; then $(CYGPATH_W) './unzip/extract.c'; else $(CYGPATH_W) '$(srcdir)/./unzip/extract.c'; fi` - -fileio.o: ./unzip/fileio.c - if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT fileio.o -MD -MP -MF "$(DEPDIR)/fileio.Tpo" -c -o fileio.o `test -f './unzip/fileio.c' || echo '$(srcdir)/'`./unzip/fileio.c; \ - then mv -f "$(DEPDIR)/fileio.Tpo" "$(DEPDIR)/fileio.Po"; else rm -f "$(DEPDIR)/fileio.Tpo"; exit 1; fi -# source='./unzip/fileio.c' object='fileio.o' libtool=no \ -# depfile='$(DEPDIR)/fileio.Po' tmpdepfile='$(DEPDIR)/fileio.TPo' \ -# $(CCDEPMODE) $(depcomp) \ -# $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o fileio.o `test -f './unzip/fileio.c' || echo '$(srcdir)/'`./unzip/fileio.c - -fileio.obj: ./unzip/fileio.c - if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT fileio.obj -MD -MP -MF "$(DEPDIR)/fileio.Tpo" -c -o fileio.obj `if test -f './unzip/fileio.c'; then $(CYGPATH_W) './unzip/fileio.c'; else $(CYGPATH_W) '$(srcdir)/./unzip/fileio.c'; fi`; \ - then mv -f "$(DEPDIR)/fileio.Tpo" "$(DEPDIR)/fileio.Po"; else rm -f "$(DEPDIR)/fileio.Tpo"; exit 1; fi -# source='./unzip/fileio.c' object='fileio.obj' libtool=no \ -# depfile='$(DEPDIR)/fileio.Po' tmpdepfile='$(DEPDIR)/fileio.TPo' \ -# $(CCDEPMODE) $(depcomp) \ -# $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o fileio.obj `if test -f './unzip/fileio.c'; then $(CYGPATH_W) './unzip/fileio.c'; else $(CYGPATH_W) '$(srcdir)/./unzip/fileio.c'; fi` - -globals.o: ./unzip/globals.c - if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT globals.o -MD -MP -MF "$(DEPDIR)/globals.Tpo" -c -o globals.o `test -f './unzip/globals.c' || echo '$(srcdir)/'`./unzip/globals.c; \ - then mv -f "$(DEPDIR)/globals.Tpo" "$(DEPDIR)/globals.Po"; else rm -f "$(DEPDIR)/globals.Tpo"; exit 1; fi -# source='./unzip/globals.c' object='globals.o' libtool=no \ -# depfile='$(DEPDIR)/globals.Po' tmpdepfile='$(DEPDIR)/globals.TPo' \ -# $(CCDEPMODE) $(depcomp) \ -# $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o globals.o `test -f './unzip/globals.c' || echo '$(srcdir)/'`./unzip/globals.c - -globals.obj: ./unzip/globals.c - if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT globals.obj -MD -MP -MF "$(DEPDIR)/globals.Tpo" -c -o globals.obj `if test -f './unzip/globals.c'; then $(CYGPATH_W) './unzip/globals.c'; else $(CYGPATH_W) '$(srcdir)/./unzip/globals.c'; fi`; \ - then mv -f "$(DEPDIR)/globals.Tpo" "$(DEPDIR)/globals.Po"; else rm -f "$(DEPDIR)/globals.Tpo"; exit 1; fi -# source='./unzip/globals.c' object='globals.obj' libtool=no \ -# depfile='$(DEPDIR)/globals.Po' tmpdepfile='$(DEPDIR)/globals.TPo' \ -# $(CCDEPMODE) $(depcomp) \ -# $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o globals.obj `if test -f './unzip/globals.c'; then $(CYGPATH_W) './unzip/globals.c'; else $(CYGPATH_W) '$(srcdir)/./unzip/globals.c'; fi` - -inflate.o: ./unzip/inflate.c - if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT inflate.o -MD -MP -MF "$(DEPDIR)/inflate.Tpo" -c -o inflate.o `test -f './unzip/inflate.c' || echo '$(srcdir)/'`./unzip/inflate.c; \ - then mv -f "$(DEPDIR)/inflate.Tpo" "$(DEPDIR)/inflate.Po"; else rm -f "$(DEPDIR)/inflate.Tpo"; exit 1; fi -# source='./unzip/inflate.c' object='inflate.o' libtool=no \ -# depfile='$(DEPDIR)/inflate.Po' tmpdepfile='$(DEPDIR)/inflate.TPo' \ -# $(CCDEPMODE) $(depcomp) \ -# $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o inflate.o `test -f './unzip/inflate.c' || echo '$(srcdir)/'`./unzip/inflate.c - -inflate.obj: ./unzip/inflate.c - if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT inflate.obj -MD -MP -MF "$(DEPDIR)/inflate.Tpo" -c -o inflate.obj `if test -f './unzip/inflate.c'; then $(CYGPATH_W) './unzip/inflate.c'; else $(CYGPATH_W) '$(srcdir)/./unzip/inflate.c'; fi`; \ - then mv -f "$(DEPDIR)/inflate.Tpo" "$(DEPDIR)/inflate.Po"; else rm -f "$(DEPDIR)/inflate.Tpo"; exit 1; fi -# source='./unzip/inflate.c' object='inflate.obj' libtool=no \ -# depfile='$(DEPDIR)/inflate.Po' tmpdepfile='$(DEPDIR)/inflate.TPo' \ -# $(CCDEPMODE) $(depcomp) \ -# $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o inflate.obj `if test -f './unzip/inflate.c'; then $(CYGPATH_W) './unzip/inflate.c'; else $(CYGPATH_W) '$(srcdir)/./unzip/inflate.c'; fi` - -list.o: ./unzip/list.c - if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT list.o -MD -MP -MF "$(DEPDIR)/list.Tpo" -c -o list.o `test -f './unzip/list.c' || echo '$(srcdir)/'`./unzip/list.c; \ - then mv -f "$(DEPDIR)/list.Tpo" "$(DEPDIR)/list.Po"; else rm -f "$(DEPDIR)/list.Tpo"; exit 1; fi -# source='./unzip/list.c' object='list.o' libtool=no \ -# depfile='$(DEPDIR)/list.Po' tmpdepfile='$(DEPDIR)/list.TPo' \ -# $(CCDEPMODE) $(depcomp) \ -# $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o list.o `test -f './unzip/list.c' || echo '$(srcdir)/'`./unzip/list.c - -list.obj: ./unzip/list.c - if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT list.obj -MD -MP -MF "$(DEPDIR)/list.Tpo" -c -o list.obj `if test -f './unzip/list.c'; then $(CYGPATH_W) './unzip/list.c'; else $(CYGPATH_W) '$(srcdir)/./unzip/list.c'; fi`; \ - then mv -f "$(DEPDIR)/list.Tpo" "$(DEPDIR)/list.Po"; else rm -f "$(DEPDIR)/list.Tpo"; exit 1; fi -# source='./unzip/list.c' object='list.obj' libtool=no \ -# depfile='$(DEPDIR)/list.Po' tmpdepfile='$(DEPDIR)/list.TPo' \ -# $(CCDEPMODE) $(depcomp) \ -# $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o list.obj `if test -f './unzip/list.c'; then $(CYGPATH_W) './unzip/list.c'; else $(CYGPATH_W) '$(srcdir)/./unzip/list.c'; fi` - -match.o: ./unzip/match.c - if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT match.o -MD -MP -MF "$(DEPDIR)/match.Tpo" -c -o match.o `test -f './unzip/match.c' || echo '$(srcdir)/'`./unzip/match.c; \ - then mv -f "$(DEPDIR)/match.Tpo" "$(DEPDIR)/match.Po"; else rm -f "$(DEPDIR)/match.Tpo"; exit 1; fi -# source='./unzip/match.c' object='match.o' libtool=no \ -# depfile='$(DEPDIR)/match.Po' tmpdepfile='$(DEPDIR)/match.TPo' \ -# $(CCDEPMODE) $(depcomp) \ -# $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o match.o `test -f './unzip/match.c' || echo '$(srcdir)/'`./unzip/match.c - -match.obj: ./unzip/match.c - if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT match.obj -MD -MP -MF "$(DEPDIR)/match.Tpo" -c -o match.obj `if test -f './unzip/match.c'; then $(CYGPATH_W) './unzip/match.c'; else $(CYGPATH_W) '$(srcdir)/./unzip/match.c'; fi`; \ - then mv -f "$(DEPDIR)/match.Tpo" "$(DEPDIR)/match.Po"; else rm -f "$(DEPDIR)/match.Tpo"; exit 1; fi -# source='./unzip/match.c' object='match.obj' libtool=no \ -# depfile='$(DEPDIR)/match.Po' tmpdepfile='$(DEPDIR)/match.TPo' \ -# $(CCDEPMODE) $(depcomp) \ -# $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o match.obj `if test -f './unzip/match.c'; then $(CYGPATH_W) './unzip/match.c'; else $(CYGPATH_W) '$(srcdir)/./unzip/match.c'; fi` - -process.o: ./unzip/process.c - if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT process.o -MD -MP -MF "$(DEPDIR)/process.Tpo" -c -o process.o `test -f './unzip/process.c' || echo '$(srcdir)/'`./unzip/process.c; \ - then mv -f "$(DEPDIR)/process.Tpo" "$(DEPDIR)/process.Po"; else rm -f "$(DEPDIR)/process.Tpo"; exit 1; fi -# source='./unzip/process.c' object='process.o' libtool=no \ -# depfile='$(DEPDIR)/process.Po' tmpdepfile='$(DEPDIR)/process.TPo' \ -# $(CCDEPMODE) $(depcomp) \ -# $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o process.o `test -f './unzip/process.c' || echo '$(srcdir)/'`./unzip/process.c - -process.obj: ./unzip/process.c - if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT process.obj -MD -MP -MF "$(DEPDIR)/process.Tpo" -c -o process.obj `if test -f './unzip/process.c'; then $(CYGPATH_W) './unzip/process.c'; else $(CYGPATH_W) '$(srcdir)/./unzip/process.c'; fi`; \ - then mv -f "$(DEPDIR)/process.Tpo" "$(DEPDIR)/process.Po"; else rm -f "$(DEPDIR)/process.Tpo"; exit 1; fi -# source='./unzip/process.c' object='process.obj' libtool=no \ -# depfile='$(DEPDIR)/process.Po' tmpdepfile='$(DEPDIR)/process.TPo' \ -# $(CCDEPMODE) $(depcomp) \ -# $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o process.obj `if test -f './unzip/process.c'; then $(CYGPATH_W) './unzip/process.c'; else $(CYGPATH_W) '$(srcdir)/./unzip/process.c'; fi` - -ttyio.o: ./unzip/ttyio.c - if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ttyio.o -MD -MP -MF "$(DEPDIR)/ttyio.Tpo" -c -o ttyio.o `test -f './unzip/ttyio.c' || echo '$(srcdir)/'`./unzip/ttyio.c; \ - then mv -f "$(DEPDIR)/ttyio.Tpo" "$(DEPDIR)/ttyio.Po"; else rm -f "$(DEPDIR)/ttyio.Tpo"; exit 1; fi -# source='./unzip/ttyio.c' object='ttyio.o' libtool=no \ -# depfile='$(DEPDIR)/ttyio.Po' tmpdepfile='$(DEPDIR)/ttyio.TPo' \ -# $(CCDEPMODE) $(depcomp) \ -# $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ttyio.o `test -f './unzip/ttyio.c' || echo '$(srcdir)/'`./unzip/ttyio.c - -ttyio.obj: ./unzip/ttyio.c - if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ttyio.obj -MD -MP -MF "$(DEPDIR)/ttyio.Tpo" -c -o ttyio.obj `if test -f './unzip/ttyio.c'; then $(CYGPATH_W) './unzip/ttyio.c'; else $(CYGPATH_W) '$(srcdir)/./unzip/ttyio.c'; fi`; \ - then mv -f "$(DEPDIR)/ttyio.Tpo" "$(DEPDIR)/ttyio.Po"; else rm -f "$(DEPDIR)/ttyio.Tpo"; exit 1; fi -# source='./unzip/ttyio.c' object='ttyio.obj' libtool=no \ -# depfile='$(DEPDIR)/ttyio.Po' tmpdepfile='$(DEPDIR)/ttyio.TPo' \ -# $(CCDEPMODE) $(depcomp) \ -# $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ttyio.obj `if test -f './unzip/ttyio.c'; then $(CYGPATH_W) './unzip/ttyio.c'; else $(CYGPATH_W) '$(srcdir)/./unzip/ttyio.c'; fi` - -unreduce.o: ./unzip/unreduce.c - if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT unreduce.o -MD -MP -MF "$(DEPDIR)/unreduce.Tpo" -c -o unreduce.o `test -f './unzip/unreduce.c' || echo '$(srcdir)/'`./unzip/unreduce.c; \ - then mv -f "$(DEPDIR)/unreduce.Tpo" "$(DEPDIR)/unreduce.Po"; else rm -f "$(DEPDIR)/unreduce.Tpo"; exit 1; fi -# source='./unzip/unreduce.c' object='unreduce.o' libtool=no \ -# depfile='$(DEPDIR)/unreduce.Po' tmpdepfile='$(DEPDIR)/unreduce.TPo' \ -# $(CCDEPMODE) $(depcomp) \ -# $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o unreduce.o `test -f './unzip/unreduce.c' || echo '$(srcdir)/'`./unzip/unreduce.c - -unreduce.obj: ./unzip/unreduce.c - if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT unreduce.obj -MD -MP -MF "$(DEPDIR)/unreduce.Tpo" -c -o unreduce.obj `if test -f './unzip/unreduce.c'; then $(CYGPATH_W) './unzip/unreduce.c'; else $(CYGPATH_W) '$(srcdir)/./unzip/unreduce.c'; fi`; \ - then mv -f "$(DEPDIR)/unreduce.Tpo" "$(DEPDIR)/unreduce.Po"; else rm -f "$(DEPDIR)/unreduce.Tpo"; exit 1; fi -# source='./unzip/unreduce.c' object='unreduce.obj' libtool=no \ -# depfile='$(DEPDIR)/unreduce.Po' tmpdepfile='$(DEPDIR)/unreduce.TPo' \ -# $(CCDEPMODE) $(depcomp) \ -# $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o unreduce.obj `if test -f './unzip/unreduce.c'; then $(CYGPATH_W) './unzip/unreduce.c'; else $(CYGPATH_W) '$(srcdir)/./unzip/unreduce.c'; fi` - -unshrink.o: ./unzip/unshrink.c - if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT unshrink.o -MD -MP -MF "$(DEPDIR)/unshrink.Tpo" -c -o unshrink.o `test -f './unzip/unshrink.c' || echo '$(srcdir)/'`./unzip/unshrink.c; \ - then mv -f "$(DEPDIR)/unshrink.Tpo" "$(DEPDIR)/unshrink.Po"; else rm -f "$(DEPDIR)/unshrink.Tpo"; exit 1; fi -# source='./unzip/unshrink.c' object='unshrink.o' libtool=no \ -# depfile='$(DEPDIR)/unshrink.Po' tmpdepfile='$(DEPDIR)/unshrink.TPo' \ -# $(CCDEPMODE) $(depcomp) \ -# $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o unshrink.o `test -f './unzip/unshrink.c' || echo '$(srcdir)/'`./unzip/unshrink.c - -unshrink.obj: ./unzip/unshrink.c - if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT unshrink.obj -MD -MP -MF "$(DEPDIR)/unshrink.Tpo" -c -o unshrink.obj `if test -f './unzip/unshrink.c'; then $(CYGPATH_W) './unzip/unshrink.c'; else $(CYGPATH_W) '$(srcdir)/./unzip/unshrink.c'; fi`; \ - then mv -f "$(DEPDIR)/unshrink.Tpo" "$(DEPDIR)/unshrink.Po"; else rm -f "$(DEPDIR)/unshrink.Tpo"; exit 1; fi -# source='./unzip/unshrink.c' object='unshrink.obj' libtool=no \ -# depfile='$(DEPDIR)/unshrink.Po' tmpdepfile='$(DEPDIR)/unshrink.TPo' \ -# $(CCDEPMODE) $(depcomp) \ -# $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o unshrink.obj `if test -f './unzip/unshrink.c'; then $(CYGPATH_W) './unzip/unshrink.c'; else $(CYGPATH_W) '$(srcdir)/./unzip/unshrink.c'; fi` - -unzip.o: ./unzip/unzip.c - if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT unzip.o -MD -MP -MF "$(DEPDIR)/unzip.Tpo" -c -o unzip.o `test -f './unzip/unzip.c' || echo '$(srcdir)/'`./unzip/unzip.c; \ - then mv -f "$(DEPDIR)/unzip.Tpo" "$(DEPDIR)/unzip.Po"; else rm -f "$(DEPDIR)/unzip.Tpo"; exit 1; fi -# source='./unzip/unzip.c' object='unzip.o' libtool=no \ -# depfile='$(DEPDIR)/unzip.Po' tmpdepfile='$(DEPDIR)/unzip.TPo' \ -# $(CCDEPMODE) $(depcomp) \ -# $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o unzip.o `test -f './unzip/unzip.c' || echo '$(srcdir)/'`./unzip/unzip.c - -unzip.obj: ./unzip/unzip.c - if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT unzip.obj -MD -MP -MF "$(DEPDIR)/unzip.Tpo" -c -o unzip.obj `if test -f './unzip/unzip.c'; then $(CYGPATH_W) './unzip/unzip.c'; else $(CYGPATH_W) '$(srcdir)/./unzip/unzip.c'; fi`; \ - then mv -f "$(DEPDIR)/unzip.Tpo" "$(DEPDIR)/unzip.Po"; else rm -f "$(DEPDIR)/unzip.Tpo"; exit 1; fi -# source='./unzip/unzip.c' object='unzip.obj' libtool=no \ -# depfile='$(DEPDIR)/unzip.Po' tmpdepfile='$(DEPDIR)/unzip.TPo' \ -# $(CCDEPMODE) $(depcomp) \ -# $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o unzip.obj `if test -f './unzip/unzip.c'; then $(CYGPATH_W) './unzip/unzip.c'; else $(CYGPATH_W) '$(srcdir)/./unzip/unzip.c'; fi` - -zipinfo.o: ./unzip/zipinfo.c - if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT zipinfo.o -MD -MP -MF "$(DEPDIR)/zipinfo.Tpo" -c -o zipinfo.o `test -f './unzip/zipinfo.c' || echo '$(srcdir)/'`./unzip/zipinfo.c; \ - then mv -f "$(DEPDIR)/zipinfo.Tpo" "$(DEPDIR)/zipinfo.Po"; else rm -f "$(DEPDIR)/zipinfo.Tpo"; exit 1; fi -# source='./unzip/zipinfo.c' object='zipinfo.o' libtool=no \ -# depfile='$(DEPDIR)/zipinfo.Po' tmpdepfile='$(DEPDIR)/zipinfo.TPo' \ -# $(CCDEPMODE) $(depcomp) \ -# $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o zipinfo.o `test -f './unzip/zipinfo.c' || echo '$(srcdir)/'`./unzip/zipinfo.c - -zipinfo.obj: ./unzip/zipinfo.c - if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT zipinfo.obj -MD -MP -MF "$(DEPDIR)/zipinfo.Tpo" -c -o zipinfo.obj `if test -f './unzip/zipinfo.c'; then $(CYGPATH_W) './unzip/zipinfo.c'; else $(CYGPATH_W) '$(srcdir)/./unzip/zipinfo.c'; fi`; \ - then mv -f "$(DEPDIR)/zipinfo.Tpo" "$(DEPDIR)/zipinfo.Po"; else rm -f "$(DEPDIR)/zipinfo.Tpo"; exit 1; fi -# source='./unzip/zipinfo.c' object='zipinfo.obj' libtool=no \ -# depfile='$(DEPDIR)/zipinfo.Po' tmpdepfile='$(DEPDIR)/zipinfo.TPo' \ -# $(CCDEPMODE) $(depcomp) \ -# $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o zipinfo.obj `if test -f './unzip/zipinfo.c'; then $(CYGPATH_W) './unzip/zipinfo.c'; else $(CYGPATH_W) '$(srcdir)/./unzip/zipinfo.c'; fi` - -deflate.o: ./zip/deflate.c - if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT deflate.o -MD -MP -MF "$(DEPDIR)/deflate.Tpo" -c -o deflate.o `test -f './zip/deflate.c' || echo '$(srcdir)/'`./zip/deflate.c; \ - then mv -f "$(DEPDIR)/deflate.Tpo" "$(DEPDIR)/deflate.Po"; else rm -f "$(DEPDIR)/deflate.Tpo"; exit 1; fi -# source='./zip/deflate.c' object='deflate.o' libtool=no \ -# depfile='$(DEPDIR)/deflate.Po' tmpdepfile='$(DEPDIR)/deflate.TPo' \ -# $(CCDEPMODE) $(depcomp) \ -# $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o deflate.o `test -f './zip/deflate.c' || echo '$(srcdir)/'`./zip/deflate.c - -deflate.obj: ./zip/deflate.c - if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT deflate.obj -MD -MP -MF "$(DEPDIR)/deflate.Tpo" -c -o deflate.obj `if test -f './zip/deflate.c'; then $(CYGPATH_W) './zip/deflate.c'; else $(CYGPATH_W) '$(srcdir)/./zip/deflate.c'; fi`; \ - then mv -f "$(DEPDIR)/deflate.Tpo" "$(DEPDIR)/deflate.Po"; else rm -f "$(DEPDIR)/deflate.Tpo"; exit 1; fi -# source='./zip/deflate.c' object='deflate.obj' libtool=no \ -# depfile='$(DEPDIR)/deflate.Po' tmpdepfile='$(DEPDIR)/deflate.TPo' \ -# $(CCDEPMODE) $(depcomp) \ -# $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o deflate.obj `if test -f './zip/deflate.c'; then $(CYGPATH_W) './zip/deflate.c'; else $(CYGPATH_W) '$(srcdir)/./zip/deflate.c'; fi` - -trees.o: ./zip/trees.c - if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT trees.o -MD -MP -MF "$(DEPDIR)/trees.Tpo" -c -o trees.o `test -f './zip/trees.c' || echo '$(srcdir)/'`./zip/trees.c; \ - then mv -f "$(DEPDIR)/trees.Tpo" "$(DEPDIR)/trees.Po"; else rm -f "$(DEPDIR)/trees.Tpo"; exit 1; fi -# source='./zip/trees.c' object='trees.o' libtool=no \ -# depfile='$(DEPDIR)/trees.Po' tmpdepfile='$(DEPDIR)/trees.TPo' \ -# $(CCDEPMODE) $(depcomp) \ -# $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o trees.o `test -f './zip/trees.c' || echo '$(srcdir)/'`./zip/trees.c - -trees.obj: ./zip/trees.c - if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT trees.obj -MD -MP -MF "$(DEPDIR)/trees.Tpo" -c -o trees.obj `if test -f './zip/trees.c'; then $(CYGPATH_W) './zip/trees.c'; else $(CYGPATH_W) '$(srcdir)/./zip/trees.c'; fi`; \ - then mv -f "$(DEPDIR)/trees.Tpo" "$(DEPDIR)/trees.Po"; else rm -f "$(DEPDIR)/trees.Tpo"; exit 1; fi -# source='./zip/trees.c' object='trees.obj' libtool=no \ -# depfile='$(DEPDIR)/trees.Po' tmpdepfile='$(DEPDIR)/trees.TPo' \ -# $(CCDEPMODE) $(depcomp) \ -# $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o trees.obj `if test -f './zip/trees.c'; then $(CYGPATH_W) './zip/trees.c'; else $(CYGPATH_W) '$(srcdir)/./zip/trees.c'; fi` - -util.o: ./zip/util.c - if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT util.o -MD -MP -MF "$(DEPDIR)/util.Tpo" -c -o util.o `test -f './zip/util.c' || echo '$(srcdir)/'`./zip/util.c; \ - then mv -f "$(DEPDIR)/util.Tpo" "$(DEPDIR)/util.Po"; else rm -f "$(DEPDIR)/util.Tpo"; exit 1; fi -# source='./zip/util.c' object='util.o' libtool=no \ -# depfile='$(DEPDIR)/util.Po' tmpdepfile='$(DEPDIR)/util.TPo' \ -# $(CCDEPMODE) $(depcomp) \ -# $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o util.o `test -f './zip/util.c' || echo '$(srcdir)/'`./zip/util.c - -util.obj: ./zip/util.c - if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT util.obj -MD -MP -MF "$(DEPDIR)/util.Tpo" -c -o util.obj `if test -f './zip/util.c'; then $(CYGPATH_W) './zip/util.c'; else $(CYGPATH_W) '$(srcdir)/./zip/util.c'; fi`; \ - then mv -f "$(DEPDIR)/util.Tpo" "$(DEPDIR)/util.Po"; else rm -f "$(DEPDIR)/util.Tpo"; exit 1; fi -# source='./zip/util.c' object='util.obj' libtool=no \ -# depfile='$(DEPDIR)/util.Po' tmpdepfile='$(DEPDIR)/util.TPo' \ -# $(CCDEPMODE) $(depcomp) \ -# $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o util.obj `if test -f './zip/util.c'; then $(CYGPATH_W) './zip/util.c'; else $(CYGPATH_W) '$(srcdir)/./zip/util.c'; fi` - -z_fileio.o: ./zip/z_fileio.c - if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT z_fileio.o -MD -MP -MF "$(DEPDIR)/z_fileio.Tpo" -c -o z_fileio.o `test -f './zip/z_fileio.c' || echo '$(srcdir)/'`./zip/z_fileio.c; \ - then mv -f "$(DEPDIR)/z_fileio.Tpo" "$(DEPDIR)/z_fileio.Po"; else rm -f "$(DEPDIR)/z_fileio.Tpo"; exit 1; fi -# source='./zip/z_fileio.c' object='z_fileio.o' libtool=no \ -# depfile='$(DEPDIR)/z_fileio.Po' tmpdepfile='$(DEPDIR)/z_fileio.TPo' \ -# $(CCDEPMODE) $(depcomp) \ -# $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o z_fileio.o `test -f './zip/z_fileio.c' || echo '$(srcdir)/'`./zip/z_fileio.c - -z_fileio.obj: ./zip/z_fileio.c - if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT z_fileio.obj -MD -MP -MF "$(DEPDIR)/z_fileio.Tpo" -c -o z_fileio.obj `if test -f './zip/z_fileio.c'; then $(CYGPATH_W) './zip/z_fileio.c'; else $(CYGPATH_W) '$(srcdir)/./zip/z_fileio.c'; fi`; \ - then mv -f "$(DEPDIR)/z_fileio.Tpo" "$(DEPDIR)/z_fileio.Po"; else rm -f "$(DEPDIR)/z_fileio.Tpo"; exit 1; fi -# source='./zip/z_fileio.c' object='z_fileio.obj' libtool=no \ -# depfile='$(DEPDIR)/z_fileio.Po' tmpdepfile='$(DEPDIR)/z_fileio.TPo' \ -# $(CCDEPMODE) $(depcomp) \ -# $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o z_fileio.obj `if test -f './zip/z_fileio.c'; then $(CYGPATH_W) './zip/z_fileio.c'; else $(CYGPATH_W) '$(srcdir)/./zip/z_fileio.c'; fi` - -z_globals.o: ./zip/z_globals.c - if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT z_globals.o -MD -MP -MF "$(DEPDIR)/z_globals.Tpo" -c -o z_globals.o `test -f './zip/z_globals.c' || echo '$(srcdir)/'`./zip/z_globals.c; \ - then mv -f "$(DEPDIR)/z_globals.Tpo" "$(DEPDIR)/z_globals.Po"; else rm -f "$(DEPDIR)/z_globals.Tpo"; exit 1; fi -# source='./zip/z_globals.c' object='z_globals.o' libtool=no \ -# depfile='$(DEPDIR)/z_globals.Po' tmpdepfile='$(DEPDIR)/z_globals.TPo' \ -# $(CCDEPMODE) $(depcomp) \ -# $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o z_globals.o `test -f './zip/z_globals.c' || echo '$(srcdir)/'`./zip/z_globals.c - -z_globals.obj: ./zip/z_globals.c - if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT z_globals.obj -MD -MP -MF "$(DEPDIR)/z_globals.Tpo" -c -o z_globals.obj `if test -f './zip/z_globals.c'; then $(CYGPATH_W) './zip/z_globals.c'; else $(CYGPATH_W) '$(srcdir)/./zip/z_globals.c'; fi`; \ - then mv -f "$(DEPDIR)/z_globals.Tpo" "$(DEPDIR)/z_globals.Po"; else rm -f "$(DEPDIR)/z_globals.Tpo"; exit 1; fi -# source='./zip/z_globals.c' object='z_globals.obj' libtool=no \ -# depfile='$(DEPDIR)/z_globals.Po' tmpdepfile='$(DEPDIR)/z_globals.TPo' \ -# $(CCDEPMODE) $(depcomp) \ -# $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o z_globals.obj `if test -f './zip/z_globals.c'; then $(CYGPATH_W) './zip/z_globals.c'; else $(CYGPATH_W) '$(srcdir)/./zip/z_globals.c'; fi` - -zip.o: ./zip/zip.c - if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT zip.o -MD -MP -MF "$(DEPDIR)/zip.Tpo" -c -o zip.o `test -f './zip/zip.c' || echo '$(srcdir)/'`./zip/zip.c; \ - then mv -f "$(DEPDIR)/zip.Tpo" "$(DEPDIR)/zip.Po"; else rm -f "$(DEPDIR)/zip.Tpo"; exit 1; fi -# source='./zip/zip.c' object='zip.o' libtool=no \ -# depfile='$(DEPDIR)/zip.Po' tmpdepfile='$(DEPDIR)/zip.TPo' \ -# $(CCDEPMODE) $(depcomp) \ -# $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o zip.o `test -f './zip/zip.c' || echo '$(srcdir)/'`./zip/zip.c - -zip.obj: ./zip/zip.c - if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT zip.obj -MD -MP -MF "$(DEPDIR)/zip.Tpo" -c -o zip.obj `if test -f './zip/zip.c'; then $(CYGPATH_W) './zip/zip.c'; else $(CYGPATH_W) '$(srcdir)/./zip/zip.c'; fi`; \ - then mv -f "$(DEPDIR)/zip.Tpo" "$(DEPDIR)/zip.Po"; else rm -f "$(DEPDIR)/zip.Tpo"; exit 1; fi -# source='./zip/zip.c' object='zip.obj' libtool=no \ -# depfile='$(DEPDIR)/zip.Po' tmpdepfile='$(DEPDIR)/zip.TPo' \ -# $(CCDEPMODE) $(depcomp) \ -# $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o zip.obj `if test -f './zip/zip.c'; then $(CYGPATH_W) './zip/zip.c'; else $(CYGPATH_W) '$(srcdir)/./zip/zip.c'; fi` - -zipfile.o: ./zip/zipfile.c - if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT zipfile.o -MD -MP -MF "$(DEPDIR)/zipfile.Tpo" -c -o zipfile.o `test -f './zip/zipfile.c' || echo '$(srcdir)/'`./zip/zipfile.c; \ - then mv -f "$(DEPDIR)/zipfile.Tpo" "$(DEPDIR)/zipfile.Po"; else rm -f "$(DEPDIR)/zipfile.Tpo"; exit 1; fi -# source='./zip/zipfile.c' object='zipfile.o' libtool=no \ -# depfile='$(DEPDIR)/zipfile.Po' tmpdepfile='$(DEPDIR)/zipfile.TPo' \ -# $(CCDEPMODE) $(depcomp) \ -# $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o zipfile.o `test -f './zip/zipfile.c' || echo '$(srcdir)/'`./zip/zipfile.c - -zipfile.obj: ./zip/zipfile.c - if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT zipfile.obj -MD -MP -MF "$(DEPDIR)/zipfile.Tpo" -c -o zipfile.obj `if test -f './zip/zipfile.c'; then $(CYGPATH_W) './zip/zipfile.c'; else $(CYGPATH_W) '$(srcdir)/./zip/zipfile.c'; fi`; \ - then mv -f "$(DEPDIR)/zipfile.Tpo" "$(DEPDIR)/zipfile.Po"; else rm -f "$(DEPDIR)/zipfile.Tpo"; exit 1; fi -# source='./zip/zipfile.c' object='zipfile.obj' libtool=no \ -# depfile='$(DEPDIR)/zipfile.Po' tmpdepfile='$(DEPDIR)/zipfile.TPo' \ -# $(CCDEPMODE) $(depcomp) \ -# $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o zipfile.obj `if test -f './zip/zipfile.c'; then $(CYGPATH_W) './zip/zipfile.c'; else $(CYGPATH_W) '$(srcdir)/./zip/zipfile.c'; fi` - -zipup.o: ./zip/zipup.c - if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT zipup.o -MD -MP -MF "$(DEPDIR)/zipup.Tpo" -c -o zipup.o `test -f './zip/zipup.c' || echo '$(srcdir)/'`./zip/zipup.c; \ - then mv -f "$(DEPDIR)/zipup.Tpo" "$(DEPDIR)/zipup.Po"; else rm -f "$(DEPDIR)/zipup.Tpo"; exit 1; fi -# source='./zip/zipup.c' object='zipup.o' libtool=no \ -# depfile='$(DEPDIR)/zipup.Po' tmpdepfile='$(DEPDIR)/zipup.TPo' \ -# $(CCDEPMODE) $(depcomp) \ -# $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o zipup.o `test -f './zip/zipup.c' || echo '$(srcdir)/'`./zip/zipup.c - -zipup.obj: ./zip/zipup.c - if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT zipup.obj -MD -MP -MF "$(DEPDIR)/zipup.Tpo" -c -o zipup.obj `if test -f './zip/zipup.c'; then $(CYGPATH_W) './zip/zipup.c'; else $(CYGPATH_W) '$(srcdir)/./zip/zipup.c'; fi`; \ - then mv -f "$(DEPDIR)/zipup.Tpo" "$(DEPDIR)/zipup.Po"; else rm -f "$(DEPDIR)/zipup.Tpo"; exit 1; fi -# source='./zip/zipup.c' object='zipup.obj' libtool=no \ -# depfile='$(DEPDIR)/zipup.Po' tmpdepfile='$(DEPDIR)/zipup.TPo' \ -# $(CCDEPMODE) $(depcomp) \ -# $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o zipup.obj `if test -f './zip/zipup.c'; then $(CYGPATH_W) './zip/zipup.c'; else $(CYGPATH_W) '$(srcdir)/./zip/zipup.c'; fi` - -z_unix.o: ./zip/unix/z_unix.c - if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT z_unix.o -MD -MP -MF "$(DEPDIR)/z_unix.Tpo" -c -o z_unix.o `test -f './zip/unix/z_unix.c' || echo '$(srcdir)/'`./zip/unix/z_unix.c; \ - then mv -f "$(DEPDIR)/z_unix.Tpo" "$(DEPDIR)/z_unix.Po"; else rm -f "$(DEPDIR)/z_unix.Tpo"; exit 1; fi -# source='./zip/unix/z_unix.c' object='z_unix.o' libtool=no \ -# depfile='$(DEPDIR)/z_unix.Po' tmpdepfile='$(DEPDIR)/z_unix.TPo' \ -# $(CCDEPMODE) $(depcomp) \ -# $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o z_unix.o `test -f './zip/unix/z_unix.c' || echo '$(srcdir)/'`./zip/unix/z_unix.c - -z_unix.obj: ./zip/unix/z_unix.c - if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT z_unix.obj -MD -MP -MF "$(DEPDIR)/z_unix.Tpo" -c -o z_unix.obj `if test -f './zip/unix/z_unix.c'; then $(CYGPATH_W) './zip/unix/z_unix.c'; else $(CYGPATH_W) '$(srcdir)/./zip/unix/z_unix.c'; fi`; \ - then mv -f "$(DEPDIR)/z_unix.Tpo" "$(DEPDIR)/z_unix.Po"; else rm -f "$(DEPDIR)/z_unix.Tpo"; exit 1; fi -# source='./zip/unix/z_unix.c' object='z_unix.obj' libtool=no \ -# depfile='$(DEPDIR)/z_unix.Po' tmpdepfile='$(DEPDIR)/z_unix.TPo' \ -# $(CCDEPMODE) $(depcomp) \ -# $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o z_unix.obj `if test -f './zip/unix/z_unix.c'; then $(CYGPATH_W) './zip/unix/z_unix.c'; else $(CYGPATH_W) '$(srcdir)/./zip/unix/z_unix.c'; fi` - -unix.o: ./unzip/unix/unix.c - if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT unix.o -MD -MP -MF "$(DEPDIR)/unix.Tpo" -c -o unix.o `test -f './unzip/unix/unix.c' || echo '$(srcdir)/'`./unzip/unix/unix.c; \ - then mv -f "$(DEPDIR)/unix.Tpo" "$(DEPDIR)/unix.Po"; else rm -f "$(DEPDIR)/unix.Tpo"; exit 1; fi -# source='./unzip/unix/unix.c' object='unix.o' libtool=no \ -# depfile='$(DEPDIR)/unix.Po' tmpdepfile='$(DEPDIR)/unix.TPo' \ -# $(CCDEPMODE) $(depcomp) \ -# $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o unix.o `test -f './unzip/unix/unix.c' || echo '$(srcdir)/'`./unzip/unix/unix.c - -unix.obj: ./unzip/unix/unix.c - if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT unix.obj -MD -MP -MF "$(DEPDIR)/unix.Tpo" -c -o unix.obj `if test -f './unzip/unix/unix.c'; then $(CYGPATH_W) './unzip/unix/unix.c'; else $(CYGPATH_W) '$(srcdir)/./unzip/unix/unix.c'; fi`; \ - then mv -f "$(DEPDIR)/unix.Tpo" "$(DEPDIR)/unix.Po"; else rm -f "$(DEPDIR)/unix.Tpo"; exit 1; fi -# source='./unzip/unix/unix.c' object='unix.obj' libtool=no \ -# depfile='$(DEPDIR)/unix.Po' tmpdepfile='$(DEPDIR)/unix.TPo' \ -# $(CCDEPMODE) $(depcomp) \ -# $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o unix.obj `if test -f './unzip/unix/unix.c'; then $(CYGPATH_W) './unzip/unix/unix.c'; else $(CYGPATH_W) '$(srcdir)/./unzip/unix/unix.c'; fi` - -.cpp.o: - if $(CXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ - then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi -# source='$<' object='$@' libtool=no \ -# depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' \ -# $(CXXDEPMODE) $(depcomp) \ -# $(CXXCOMPILE) -c -o $@ $< - -.cpp.obj: - if $(CXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ - then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi -# source='$<' object='$@' libtool=no \ -# depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' \ -# $(CXXDEPMODE) $(depcomp) \ -# $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` -uninstall-info-am: - -ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) ' { files[$$0] = 1; } \ - END { for (i in files) print i; }'`; \ - mkid -fID $$unique -tags: TAGS - -TAGS: $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - tags=; \ - here=`pwd`; \ - list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) ' { files[$$0] = 1; } \ - END { for (i in files) print i; }'`; \ - if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique; \ - fi -ctags: CTAGS -CTAGS: $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - tags=; \ - here=`pwd`; \ - list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) ' { files[$$0] = 1; } \ - END { for (i in files) print i; }'`; \ - test -z "$(CTAGS_ARGS)$$tags$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$tags $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && cd $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) $$here - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -distdir: $(DISTFILES) - $(am__remove_distdir) - mkdir $(distdir) - $(mkdir_p) $(distdir)/.. - @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ - list='$(DISTFILES)'; for file in $$list; do \ - case $$file in \ - $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ - $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ - esac; \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test "$$dir" != "$$file" && test "$$dir" != "."; then \ - dir="/$$dir"; \ - $(mkdir_p) "$(distdir)$$dir"; \ - else \ - dir=''; \ - fi; \ - if test -d $$d/$$file; then \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ - fi; \ - cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ - else \ - test -f $(distdir)/$$file \ - || cp -p $$d/$$file $(distdir)/$$file \ - || exit 1; \ - fi; \ - done - -find $(distdir) -type d ! -perm -777 -exec chmod a+rwx {} \; -o \ - ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \ - ! -type d ! -perm -400 -exec chmod a+r {} \; -o \ - ! -type d ! -perm -444 -exec $(SHELL) $(install_sh) -c -m a+r {} {} \; \ - || chmod -R a+r $(distdir) -dist-gzip: distdir - $(AMTAR) chof - $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz - $(am__remove_distdir) - -dist-bzip2: distdir - $(AMTAR) chof - $(distdir) | bzip2 -9 -c >$(distdir).tar.bz2 - $(am__remove_distdir) - -dist-tarZ: distdir - $(AMTAR) chof - $(distdir) | compress -c >$(distdir).tar.Z - $(am__remove_distdir) - -dist-shar: distdir - shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz - $(am__remove_distdir) -dist-zip: distdir - -rm -f $(distdir).zip - zip -rq $(distdir).zip $(distdir) - $(am__remove_distdir) - -dist dist-all: distdir - $(AMTAR) chof - $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz - -rm -f $(distdir).zip - zip -rq $(distdir).zip $(distdir) - $(am__remove_distdir) - -# This target untars the dist file and tries a VPATH configuration. Then -# it guarantees that the distribution is self-contained by making another -# tarfile. -distcheck: dist - case '$(DIST_ARCHIVES)' in \ - *.tar.gz*) \ - GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(AMTAR) xf - ;;\ - *.tar.bz2*) \ - bunzip2 -c $(distdir).tar.bz2 | $(AMTAR) xf - ;;\ - *.tar.Z*) \ - uncompress -c $(distdir).tar.Z | $(AMTAR) xf - ;;\ - *.shar.gz*) \ - GZIP=$(GZIP_ENV) gunzip -c $(distdir).shar.gz | unshar ;;\ - *.zip*) \ - unzip $(distdir).zip ;;\ - esac - chmod -R a-w $(distdir); chmod a+w $(distdir) - mkdir $(distdir)/_build - mkdir $(distdir)/_inst - chmod a-w $(distdir) - dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \ - && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \ - && cd $(distdir)/_build \ - && ../configure --srcdir=.. --prefix="$$dc_install_base" \ - $(DISTCHECK_CONFIGURE_FLAGS) \ - && $(MAKE) $(AM_MAKEFLAGS) \ - && $(MAKE) $(AM_MAKEFLAGS) dvi \ - && $(MAKE) $(AM_MAKEFLAGS) check \ - && $(MAKE) $(AM_MAKEFLAGS) install \ - && $(MAKE) $(AM_MAKEFLAGS) installcheck \ - && $(MAKE) $(AM_MAKEFLAGS) uninstall \ - && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \ - distuninstallcheck \ - && chmod -R a-w "$$dc_install_base" \ - && ({ \ - (cd ../.. && umask 077 && mkdir "$$dc_destdir") \ - && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \ - && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \ - && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \ - distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \ - } || { rm -rf "$$dc_destdir"; exit 1; }) \ - && rm -rf "$$dc_destdir" \ - && $(MAKE) $(AM_MAKEFLAGS) dist \ - && rm -rf $(DIST_ARCHIVES) \ - && $(MAKE) $(AM_MAKEFLAGS) distcleancheck - $(am__remove_distdir) - @(echo "$(distdir) archives ready for distribution: "; \ - list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \ - sed -e '1{h;s/./=/g;p;x;}' -e '$${p;x;}' -distuninstallcheck: - @cd $(distuninstallcheck_dir) \ - && test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \ - || { echo "ERROR: files left after uninstall:" ; \ - if test -n "$(DESTDIR)"; then \ - echo " (check DESTDIR support)"; \ - fi ; \ - $(distuninstallcheck_listfiles) ; \ - exit 1; } >&2 -distcleancheck: distclean - @if test '$(srcdir)' = . ; then \ - echo "ERROR: distcleancheck can only run from a VPATH build" ; \ - exit 1 ; \ - fi - @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \ - || { echo "ERROR: files left in build directory after distclean:" ; \ - $(distcleancheck_listfiles) ; \ - exit 1; } >&2 -check-am: all-am -check: check-am -all-am: Makefile $(LIBRARIES) config.h -installdirs: -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - `test -z '$(STRIP)' || \ - echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-generic clean-noinstLIBRARIES mostlyclean-am - -distclean: distclean-am - -rm -f $(am__CONFIG_DISTCLEAN_FILES) - -rm -rf ./$(DEPDIR) - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-hdr distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -info: info-am - -info-am: - -install-data-am: - -install-exec-am: - -install-info: install-info-am - -install-man: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -f $(am__CONFIG_DISTCLEAN_FILES) - -rm -rf $(top_srcdir)/autom4te.cache - -rm -rf ./$(DEPDIR) - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-compile mostlyclean-generic - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: uninstall-info-am - -.PHONY: CTAGS GTAGS all all-am am--refresh check check-am clean \ - clean-generic clean-noinstLIBRARIES ctags dist dist-all \ - dist-bzip2 dist-gzip dist-shar dist-tarZ dist-zip distcheck \ - distclean distclean-compile distclean-generic distclean-hdr \ - distclean-tags distcleancheck distdir distuninstallcheck dvi \ - dvi-am html html-am info info-am install install-am \ - install-data install-data-am install-exec install-exec-am \ - install-info install-info-am install-man install-strip \ - installcheck installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-compile \ - mostlyclean-generic pdf pdf-am ps ps-am tags uninstall \ - uninstall-am uninstall-info-am - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/zip/Makefile.am b/zip/Makefile.am index 23a29333ee..14c3a33b22 100644 --- a/zip/Makefile.am +++ b/zip/Makefile.am @@ -9,7 +9,7 @@ AM_CPPFLAGS = -pthread \ -DUNIX ##noinst_PROGRAMS = test -noinst_LIBRARIES = libboinc_zip.a +lib_LIBRARIES = libboinc_zip.a libboinc_zip_a_SOURCES = boinc_zip.cpp \ ./unzip/apihelp.c \ diff --git a/zip/configure.ac b/zip/configure.ac deleted file mode 100644 index db47a6e297..0000000000 --- a/zip/configure.ac +++ /dev/null @@ -1,144 +0,0 @@ -dnl -*- autoconf -*- - -dnl $Id$ - -dnl NOTE: on milkyway.ssl and jill.ssl , need autoconf/automake et al from quarl's -dnl directory; the _autosetup script does this. - -dnl not sure exactly what the minimum version is (but 2.13 won't work) -AC_PREREQ(2.57) - -dnl Process this file with autoconf to produce a configure script. -AC_INIT(BOINC_ZIP, 1.00) - -echo "--- Configuring BOINC AC_PACKAGE_VERSION ---" - -AC_CANONICAL_SYSTEM - -dnl generate .tar.gz, .tar.bz2, .zip -dnl AM_INIT_AUTOMAKE(dist-bzip2 dist-zip) -AM_INIT_AUTOMAKE(dist-zip) - -## AC_CONFIG_SRCDIR(lib/shmem.C) - -AC_COPYRIGHT([ -The contents of this file are subject to the BOINC Public License -Version 1.0 (the "License"); you may not use this file except in -compliance with the License. You may obtain a copy of the License at -http://boinc.berkeley.edu/license_1.0.txt - -Software distributed under the License is distributed on an "AS IS" -basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the -License for the specific language governing rights and limitations -under the License. - -The Original Code is the Berkeley Open Infrastructure for Network Computing. - -The Initial Developer of the Original Code is the SETI@home project. -Portions created by the SETI@home project are Copyright (C) 2002 -University of California at Berkeley. All Rights Reserved. - -Contributor(s): Carl Christensen -]) - -AC_REVISION([$Revision$]) - -AC_SUBST(MAJOR_VERSION, `echo AC_PACKAGE_VERSION | sed 's/\..*//'`) -AC_SUBST(MINOR_VERSION, `echo AC_PACKAGE_VERSION | sed 's/.*\.0*//'`) - -AC_DEFINE_UNQUOTED(MAJOR_VERSION, $MAJOR_VERSION, [Major part of version number]) -AC_DEFINE_UNQUOTED(MINOR_VERSION, $MINOR_VERSION, [Minor part of version number]) -AC_DEFINE_UNQUOTED(HOSTTYPE, "$host", [Host for this compilation]) -AC_SUBST(CLIENT_BIN_FILENAME,[boinc_]AC_PACKAGE_VERSION[_$host${EXEEXT}]) -AC_SUBST(TOP_BUILD_DIR, [`pwd`]) -AC_SUBST(TOP_SOURCE_DIR, [`(cd \`dirname "$0"\` && pwd)`]) - -AM_MAINTAINER_MODE - -dnl Checks for programs. -AC_PROG_CC -AC_PROG_CXX -AC_PROG_CPP -AC_PROG_MAKE_SET -AC_PROG_RANLIB - -dnl Checks for libraries. -AC_CHECK_LIB(gen, main) -AC_CHECK_LIB(m, sin) -AC_CHECK_LIB(nsl, gethostbyaddr) -AC_CHECK_LIB(socket, main) -AC_CHECK_LIB(stdc++, main) -AC_CHECK_LIB(z, gzopen) - -dnl Checks for header files. -AC_HEADER_DIRENT -AC_HEADER_STDC -AC_HEADER_SYS_WAIT -AC_HEADER_TIME -AC_CHECK_HEADERS(arpa/inet.h dirent.h fcntl.h malloc.h netdb.h netinet/in.h netinet/tcp.h signal.h strings.h sys/file.h sys/ipc.h sys/mount.h sys/resource.h sys/select.h sys/shm.h sys/socket.h sys/statvfs.h sys/statfs.h sys/swap.h sys/sysctl.h sys/systeminfo.h sys/time.h sys/types.h sys/utsname.h sys/vmmeter.h sys/wait.h unistd.h errno.h) -AC_LANG_PUSH(C++) -AH_TEMPLATE([HAVE_STD_MIN],[Define to 1 if min is in namespace std::]) -AH_TEMPLATE([HAVE_STD_MAX],[Define to 1 if max is in namespace std::]) -AH_TEMPLATE([HAVE_STD_TRANSFORM],[Define to 1 if transform is in namespace std:: -]) -AC_LANG_POP -dnl TODO: use compiler to test these; there probably exists an autoconf macro already! -case "$target" in -*-linux-* | *-sun-*) - AC_DEFINE(GETSOCKOPT_SOCKLEN_T, 1, [getsockopt uses socklen_t]) - ;; -*sysv5OpenUNIX8*) - AC_DEFINE(GETSOCKOPT_SIZE_T, 1, [getsockopt uses size_t]) - ;; -esac - -dnl Checks for library functions. -AC_PROG_GCC_TRADITIONAL -AC_FUNC_VPRINTF -AC_FUNC_WAIT3 -AC_CHECK_FUNCS(gethostname gettimeofday mkdir select socket strstr uname lockf flock strftime setpriority wait4 strlcpy strlcat) - -dnl Checks for typedefs, structures, and compiler characteristics. -AC_C_CONST -AC_TYPE_SIZE_T -AC_STRUCT_TM -AC_STRUCT_TIMEZONE - -# by default, create static binaries on linux. -#[if [ "$target_os" = "linux-gnu" ]; then -# STATIC_FLAGS="-static" -#fi -#echo "checking static flags... ${STATIC_FLAGS:-(none)}"] -#AC_SUBST(STATIC_FLAGS) - -AC_CONFIG_FILES([Makefile - ]) - -AC_CONFIG_HEADER([config.h]) - -AC_OUTPUT - -echo "--- Configured BOINC AC_PACKAGE_VERSION ---" - -[ -true || $TOP_SOURCE_DIR/test/test_sanity.py || ( - cat <