From 8b75c07bf1e18fc709179f3709fcc420dd638bfe Mon Sep 17 00:00:00 2001 From: Pierre Joye Date: Sun, 8 Jun 2008 11:40:49 +0000 Subject: [PATCH] - should not be called butlet remove it as well --- ext/zip/Makefile.frag | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 ext/zip/Makefile.frag diff --git a/ext/zip/Makefile.frag b/ext/zip/Makefile.frag deleted file mode 100644 index b3781e3e7be..00000000000 --- a/ext/zip/Makefile.frag +++ /dev/null @@ -1,28 +0,0 @@ -phpincludedir=$(prefix)/include/php - -ZIP_HEADER_FILES= \ - zip.h \ - zipint.h \ - zip_alias.h \ - zipint_alias.h - -install-zip-headers: - @echo "Installing ZIP headers: $(INSTALL_ROOT)$(phpincludedir)/ext/zip/lib" - @$(mkinstalldirs) $(INSTALL_ROOT)$(phpincludedir)/ext/zip/lib - @for f in $(ZIP_HEADER_FILES); do \ - if test -f "$(top_srcdir)/lib/$$f"; then \ - $(INSTALL_DATA) $(top_srcdir)/lib/$$f $(INSTALL_ROOT)$(phpincludedir)/ext/zip/lib; \ - elif test -f "$(top_builddir)/lib/$$f"; then \ - $(INSTALL_DATA) $(top_builddir)/lib/$$f $(INSTALL_ROOT)$(phpincludedir)/ext/zip/lib; \ - elif test -f "$(top_srcdir)/ext/zip/lib/$$f"; then \ - $(INSTALL_DATA) $(top_srcdir)/ext/zip/lib/$$f $(INSTALL_ROOT)$(phpincludedir)/ext/zip/lib; \ - elif test -f "$(top_builddir)/ext/zip/lib/$$f"; then \ - $(INSTALL_DATA) $(top_builddir)/ext/zip/lib/$$f $(INSTALL_ROOT)$(phpincludedir)/ext/zip/lib; \ - else \ - echo "hmmm"; \ - fi \ - done; - -# mini hack -install: $(all_targets) $(install_targets) install-zip-headers -