Diff for /parser3/src/targets/apache13/Attic/Makefile.in between versions 1.2 and 1.37

version 1.2, 2001/05/10 17:28:24 version 1.37, 2002/08/02 11:15:13
Line 10 Line 10
 # even the implied warranty of MERCHANTABILITY or FITNESS FOR A  # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
 # PARTICULAR PURPOSE.  # PARTICULAR PURPOSE.
   
 #  $Id$  #@test why not INCLUDES=?
   
   
 SHELL = @SHELL@  SHELL = @SHELL@
Line 40  pkgdatadir = $(datadir)/@PACKAGE@ Line 40  pkgdatadir = $(datadir)/@PACKAGE@
 pkglibdir = $(libdir)/@PACKAGE@  pkglibdir = $(libdir)/@PACKAGE@
 pkgincludedir = $(includedir)/@PACKAGE@  pkgincludedir = $(includedir)/@PACKAGE@
   
 top_builddir = ../..  top_builddir = ../../..
   
 ACLOCAL = @ACLOCAL@  ACLOCAL = @ACLOCAL@
 AUTOCONF = @AUTOCONF@  AUTOCONF = @AUTOCONF@
Line 61  PRE_UNINSTALL = : Line 61  PRE_UNINSTALL = :
 POST_UNINSTALL = :  POST_UNINSTALL = :
 host_alias = @host_alias@  host_alias = @host_alias@
 host_triplet = @host@  host_triplet = @host@
 AS = @AS@  APACHE13 = @APACHE13@
   APACHE_LIBS = @APACHE_LIBS@
 AWK = @AWK@  AWK = @AWK@
 CC = @CC@  CC = @CC@
 CXX = @CXX@  CXX = @CXX@
 DLLTOOL = @DLLTOOL@  
 INCLTDL = @INCLTDL@  INCLTDL = @INCLTDL@
 LIBADD_DL = @LIBADD_DL@  LIBADD_DL = @LIBADD_DL@
 LIBLTDL = @LIBLTDL@  LIBLTDL = @LIBLTDL@
 LIBTOOL = @LIBTOOL@  
 LIBTOOL_DEPS = @LIBTOOL_DEPS@  
 LN_S = @LN_S@  
 MAKEINFO = @MAKEINFO@  MAKEINFO = @MAKEINFO@
 OBJDUMP = @OBJDUMP@  MIME_INCLUDES = @MIME_INCLUDES@
   MIME_LIBS = @MIME_LIBS@
   P3S = @P3S@
 PACKAGE = @PACKAGE@  PACKAGE = @PACKAGE@
 RANLIB = @RANLIB@  RANLIB = @RANLIB@
 VERSION = @VERSION@  VERSION = @VERSION@
 WIN32_ADDITIONAL_LIBS = @WIN32_ADDITIONAL_LIBS@  XML_INCLUDES = @XML_INCLUDES@
   XML_LIBS = @XML_LIBS@
 YACC = @YACC@  YACC = @YACC@
   charsetsdir = @charsetsdir@
   commentcharset_ = @commentcharset_@
 host_os = @host_os@  host_os = @host_os@
   mysql_client = @mysql_client@
   oracle_client = @oracle_client@
   pgsql_client = @pgsql_client@
   sqldriversdir = @sqldriversdir@
   
   INCLUDES := $(INCLUDES) -I../../classes -I../../types $(INCLTDL) -I../../sql -I../../lib/pcre -I../../lib/md5 -I$(APACHE13)/src/include -I$(APACHE13)/src/os/unix -I$(APACHE13)/src/os/win32 @XML_INCLUDES@
   
   noinst_LIBRARIES = libmod_parser3.a
   libmod_parser3_a_SOURCES = pa_pool.C pa_threads.C mod_parser3.C pa_md5c.c
   noinst_DATA = apache_build_instruction
   
 SUBDIRS = modules  EXTRA_DIST = ApacheModuleParser3.dsp
 mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs  mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
 CONFIG_HEADER = ../../include/pa_config_auto.h  CONFIG_HEADER = ../../../src/include/pa_config_auto.h
 CONFIG_CLEAN_FILES =   CONFIG_CLEAN_FILES =  p3runConfigure
 DIST_COMMON =  Makefile.am Makefile.in  LIBRARIES =  $(noinst_LIBRARIES)
   
   
   DEFS = @DEFS@ -I. -I$(srcdir) -I../../../src/include
   CPPFLAGS = @CPPFLAGS@
   LDFLAGS = @LDFLAGS@
   LIBS = @LIBS@
   libmod_parser3_a_LIBADD = 
   libmod_parser3_a_OBJECTS =  pa_pool.o pa_threads.o mod_parser3.o \
   pa_md5c.o
   AR = ar
   CXXFLAGS = @CXXFLAGS@
   CXXCOMPILE = $(CXX) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
   CXXLD = $(CXX)
   CXXLINK = $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(LDFLAGS) -o $@
   CFLAGS = @CFLAGS@
   COMPILE = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
   CCLD = $(CC)
   LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) -o $@
   DATA =  $(noinst_DATA)
   
   DIST_COMMON =  Makefile.am Makefile.in p3runConfigure.in
   
   
 DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)  DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
   
 TAR = tar  TAR = tar
 GZIP_ENV = --best  GZIP_ENV = --best
   DEP_FILES =  .deps/mod_parser3.P .deps/pa_md5c.P .deps/pa_pool.P \
   .deps/pa_threads.P
   SOURCES = $(libmod_parser3_a_SOURCES)
   OBJECTS = $(libmod_parser3_a_OBJECTS)
   
 all: all-redirect  all: all-redirect
 .SUFFIXES:  .SUFFIXES:
   .SUFFIXES: .C .S .c .o .s
 $(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)   $(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) 
         cd $(top_srcdir) && $(AUTOMAKE) --gnu targets/apache13/Makefile          cd $(top_srcdir) && $(AUTOMAKE) --gnu src/targets/apache13/Makefile
   
 Makefile: $(srcdir)/Makefile.in  $(top_builddir)/config.status $(BUILT_SOURCES)  Makefile: $(srcdir)/Makefile.in  $(top_builddir)/config.status $(BUILT_SOURCES)
         cd $(top_builddir) \          cd $(top_builddir) \
           && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status            && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
   
   p3runConfigure: $(top_builddir)/config.status p3runConfigure.in
           cd $(top_builddir) && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
   
 # This directory's subdirectories are mostly independent; you can cd  mostlyclean-noinstLIBRARIES:
 # into them and run `make' without going through this Makefile.  
 # To change the values of `make' variables: instead of editing Makefiles,  clean-noinstLIBRARIES:
 # (1) if the variable is set in `config.status', edit `config.status'          -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES)
 #     (which will cause the Makefiles to be regenerated when you run `make');  
 # (2) otherwise, pass the desired values on the `make' command line.  distclean-noinstLIBRARIES:
   
 @SET_MAKE@  maintainer-clean-noinstLIBRARIES:
   
 all-recursive install-data-recursive install-exec-recursive \  .s.o:
 installdirs-recursive install-recursive uninstall-recursive  \          $(COMPILE) -c $<
 check-recursive installcheck-recursive info-recursive dvi-recursive:  
         @set fnord $(MAKEFLAGS); amf=$$2; \  .S.o:
         dot_seen=no; \          $(COMPILE) -c $<
         target=`echo $@ | sed s/-recursive//`; \  
         list='$(SUBDIRS)'; for subdir in $$list; do \  mostlyclean-compile:
           echo "Making $$target in $$subdir"; \          -rm -f *.o core *.core
           if test "$$subdir" = "."; then \  
             dot_seen=yes; \  clean-compile:
             local_target="$$target-am"; \  
           else \  distclean-compile:
             local_target="$$target"; \          -rm -f *.tab.c
           fi; \  
           (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \  maintainer-clean-compile:
            || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \  
         done; \  libmod_parser3.a: $(libmod_parser3_a_OBJECTS) $(libmod_parser3_a_DEPENDENCIES)
         if test "$$dot_seen" = "no"; then \          -rm -f libmod_parser3.a
           $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \          $(AR) cru libmod_parser3.a $(libmod_parser3_a_OBJECTS) $(libmod_parser3_a_LIBADD)
         fi; test -z "$$fail"          $(RANLIB) libmod_parser3.a
   .C.o:
 mostlyclean-recursive clean-recursive distclean-recursive \          $(CXXCOMPILE) -c $<
 maintainer-clean-recursive:  
         @set fnord $(MAKEFLAGS); amf=$$2; \  
         dot_seen=no; \  
         rev=''; list='$(SUBDIRS)'; for subdir in $$list; do \  
           rev="$$subdir $$rev"; \  
           test "$$subdir" = "." && dot_seen=yes; \  
         done; \  
         test "$$dot_seen" = "no" && rev=". $$rev"; \  
         target=`echo $@ | sed s/-recursive//`; \  
         for subdir in $$rev; do \  
           echo "Making $$target in $$subdir"; \  
           if test "$$subdir" = "."; then \  
             local_target="$$target-am"; \  
           else \  
             local_target="$$target"; \  
           fi; \  
           (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \  
            || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \  
         done && test -z "$$fail"  
 tags-recursive:  
         list='$(SUBDIRS)'; for subdir in $$list; do \  
           test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \  
         done  
   
 tags: TAGS  tags: TAGS
   
Line 167  ID: $(HEADERS) $(SOURCES) $(LISP) Line 185  ID: $(HEADERS) $(SOURCES) $(LISP)
         here=`pwd` && cd $(srcdir) \          here=`pwd` && cd $(srcdir) \
           && mkid -f$$here/ID $$unique $(LISP)            && mkid -f$$here/ID $$unique $(LISP)
   
 TAGS: tags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) $(LISP)  TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) $(LISP)
         tags=; \          tags=; \
         here=`pwd`; \          here=`pwd`; \
         list='$(SUBDIRS)'; for subdir in $$list; do \  
    if test "$$subdir" = .; then :; else \  
             test -f $$subdir/TAGS && tags="$$tags -i $$here/$$subdir/TAGS"; \  
    fi; \  
         done; \  
         list='$(SOURCES) $(HEADERS)'; \          list='$(SOURCES) $(HEADERS)'; \
         unique=`for i in $$list; do echo $$i; done | \          unique=`for i in $$list; do echo $$i; done | \
           awk '    { files[$$0] = 1; } \            awk '    { files[$$0] = 1; } \
Line 193  maintainer-clean-tags: Line 206  maintainer-clean-tags:
   
 distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)  distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
   
 subdir = targets/apache13  subdir = src/targets/apache13
   
 distdir: $(DISTFILES)  distdir: $(DISTFILES)
         here=`cd $(top_builddir) && pwd`; \          here=`cd $(top_builddir) && pwd`; \
         top_distdir=`cd $(top_distdir) && pwd`; \          top_distdir=`cd $(top_distdir) && pwd`; \
         distdir=`cd $(distdir) && pwd`; \          distdir=`cd $(distdir) && pwd`; \
         cd $(top_srcdir) \          cd $(top_srcdir) \
           && $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --gnu targets/apache13/Makefile            && $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --gnu src/targets/apache13/Makefile
         @for file in $(DISTFILES); do \          @for file in $(DISTFILES); do \
           d=$(srcdir); \            d=$(srcdir); \
           if test -d $$d/$$file; then \            if test -d $$d/$$file; then \
Line 211  distdir: $(DISTFILES) Line 224  distdir: $(DISTFILES)
             || cp -p $$d/$$file $(distdir)/$$file || :; \              || cp -p $$d/$$file $(distdir)/$$file || :; \
           fi; \            fi; \
         done          done
         for subdir in $(SUBDIRS); do \  
           if test "$$subdir" = .; then :; else \  DEPS_MAGIC := $(shell mkdir .deps > /dev/null 2>&1 || :)
             test -d $(distdir)/$$subdir \  
             || mkdir $(distdir)/$$subdir \  -include $(DEP_FILES)
             || exit 1; \  
             chmod 777 $(distdir)/$$subdir; \  mostlyclean-depend:
             (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir=../$(top_distdir) distdir=../$(distdir)/$$subdir distdir) \  
               || exit 1; \  clean-depend:
           fi; \  
         done  distclean-depend:
           -rm -rf .deps
   
   maintainer-clean-depend:
   
   %.o: %.c
           @echo '$(COMPILE) -c $<'; \
           $(COMPILE) -Wp,-MD,.deps/$(*F).pp -c $<
           @-cp .deps/$(*F).pp .deps/$(*F).P; \
           tr ' ' '\012' < .deps/$(*F).pp \
             | sed -e 's/^\\$$//' -e '/^$$/ d' -e '/:$$/ d' -e 's/$$/ :/' \
               >> .deps/$(*F).P; \
           rm .deps/$(*F).pp
   
   %.lo: %.c
           @echo '$(LTCOMPILE) -c $<'; \
           $(LTCOMPILE) -Wp,-MD,.deps/$(*F).pp -c $<
           @-sed -e 's/^\([^:]*\)\.o[      ]*:/\1.lo \1.o :/' \
             < .deps/$(*F).pp > .deps/$(*F).P; \
           tr ' ' '\012' < .deps/$(*F).pp \
             | sed -e 's/^\\$$//' -e '/^$$/ d' -e '/:$$/ d' -e 's/$$/ :/' \
               >> .deps/$(*F).P; \
           rm -f .deps/$(*F).pp
   
   %.o: %.C
           @echo '$(CXXCOMPILE) -c $<'; \
           $(CXXCOMPILE) -Wp,-MD,.deps/$(*F).pp -c $<
           @-cp .deps/$(*F).pp .deps/$(*F).P; \
           tr ' ' '\012' < .deps/$(*F).pp \
             | sed -e 's/^\\$$//' -e '/^$$/ d' -e '/:$$/ d' -e 's/$$/ :/' \
               >> .deps/$(*F).P; \
           rm .deps/$(*F).pp
   
   %.lo: %.C
           @echo '$(LTCXXCOMPILE) -c $<'; \
           $(LTCXXCOMPILE) -Wp,-MD,.deps/$(*F).pp -c $<
           @-sed -e 's/^\([^:]*\)\.o[      ]*:/\1.lo \1.o :/' \
             < .deps/$(*F).pp > .deps/$(*F).P; \
           tr ' ' '\012' < .deps/$(*F).pp \
             | sed -e 's/^\\$$//' -e '/^$$/ d' -e '/:$$/ d' -e 's/$$/ :/' \
               >> .deps/$(*F).P; \
           rm -f .deps/$(*F).pp
 info-am:  info-am:
 info: info-recursive  info: info-am
 dvi-am:  dvi-am:
 dvi: dvi-recursive  dvi: dvi-am
 check-am: all-am  check-am: all-am
 check: check-recursive  check: check-am
 installcheck-am:  installcheck-am:
 installcheck: installcheck-recursive  installcheck: installcheck-am
 install-exec-am:  install-exec-am:
 install-exec: install-exec-recursive  install-exec: install-exec-am
   
 install-data-am:  install-data-am:
 install-data: install-data-recursive  install-data: install-data-am
   
 install-am: all-am  install-am: all-am
         @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am          @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
 install: install-recursive  install: install-am
 uninstall-am:  uninstall-am:
 uninstall: uninstall-recursive  uninstall: uninstall-am
 all-am: Makefile  all-am: Makefile $(LIBRARIES) $(DATA)
 all-redirect: all-recursive  all-redirect: all-am
 install-strip:  install-strip:
         $(MAKE) $(AM_MAKEFLAGS) AM_INSTALL_PROGRAM_FLAGS=-s install          $(MAKE) $(AM_MAKEFLAGS) AM_INSTALL_PROGRAM_FLAGS=-s install
 installdirs: installdirs-recursive  installdirs:
 installdirs-am:  
   
   
 mostlyclean-generic:  mostlyclean-generic:
Line 257  distclean-generic: Line 310  distclean-generic:
         -rm -f config.cache config.log stamp-h stamp-h[0-9]*          -rm -f config.cache config.log stamp-h stamp-h[0-9]*
   
 maintainer-clean-generic:  maintainer-clean-generic:
 mostlyclean-am:  mostlyclean-tags mostlyclean-generic  mostlyclean-am:  mostlyclean-noinstLIBRARIES mostlyclean-compile \
                   mostlyclean-tags mostlyclean-depend mostlyclean-generic
   
 mostlyclean: mostlyclean-recursive  mostlyclean: mostlyclean-am
   
 clean-am:  clean-tags clean-generic mostlyclean-am  clean-am:  clean-noinstLIBRARIES clean-compile clean-tags clean-depend \
                   clean-generic mostlyclean-am
   
 clean: clean-recursive  clean: clean-am
   
 distclean-am:  distclean-tags distclean-generic clean-am  distclean-am:  distclean-noinstLIBRARIES distclean-compile \
         -rm -f libtool                  distclean-tags distclean-depend distclean-generic \
                   clean-am
   
 distclean: distclean-recursive  distclean: distclean-am
   
 maintainer-clean-am:  maintainer-clean-tags maintainer-clean-generic \  maintainer-clean-am:  maintainer-clean-noinstLIBRARIES \
                   maintainer-clean-compile maintainer-clean-tags \
                   maintainer-clean-depend maintainer-clean-generic \
                 distclean-am                  distclean-am
         @echo "This command is intended for maintainers to use;"          @echo "This command is intended for maintainers to use;"
         @echo "it deletes files that may require special tools to rebuild."          @echo "it deletes files that may require special tools to rebuild."
   
 maintainer-clean: maintainer-clean-recursive  maintainer-clean: maintainer-clean-am
   
 .PHONY: install-data-recursive uninstall-data-recursive \  .PHONY: mostlyclean-noinstLIBRARIES distclean-noinstLIBRARIES \
 install-exec-recursive uninstall-exec-recursive installdirs-recursive \  clean-noinstLIBRARIES maintainer-clean-noinstLIBRARIES \
 uninstalldirs-recursive all-recursive check-recursive \  mostlyclean-compile distclean-compile clean-compile \
 installcheck-recursive info-recursive dvi-recursive \  maintainer-clean-compile tags mostlyclean-tags distclean-tags \
 mostlyclean-recursive distclean-recursive clean-recursive \  clean-tags maintainer-clean-tags distdir mostlyclean-depend \
 maintainer-clean-recursive tags tags-recursive mostlyclean-tags \  distclean-depend clean-depend maintainer-clean-depend info-am info \
 distclean-tags clean-tags maintainer-clean-tags distdir info-am info \  
 dvi-am dvi check check-am installcheck-am installcheck install-exec-am \  dvi-am dvi check check-am installcheck-am installcheck install-exec-am \
 install-exec install-data-am install-data install-am install \  install-exec install-data-am install-data install-am install \
 uninstall-am uninstall all-redirect all-am all installdirs-am \  uninstall-am uninstall all-redirect all-am all installdirs \
 installdirs mostlyclean-generic distclean-generic clean-generic \  mostlyclean-generic distclean-generic clean-generic \
 maintainer-clean-generic clean mostlyclean distclean maintainer-clean  maintainer-clean-generic clean mostlyclean distclean maintainer-clean
   
   
   apache_build_instruction:
           -chmod +x p3runConfigure
           -cp -f p3runConfigure $(APACHE13)
           @echo "******************************************************"
           @echo "to build apache with parser3 module:"
           @echo
           @echo "1. cd $(APACHE13)"
           @echo
           @echo "2. ./p3runConfigure [configure options]"
           @echo
           @echo "3. make"
           @echo "******************************************************"
   
 # Tell versions [3.59,3.63) of GNU make to not export all variables.  # 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.  # Otherwise a system limit (for SysV at least) may be exceeded.
 .NOEXPORT:  .NOEXPORT:

Removed from v.1.2  
changed lines
  Added in v.1.37


E-mail: