You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ma...@hyperreal.org on 1999/12/01 06:39:17 UTC

cvs commit: apache-2.0/src Makefile.am

manoj       99/11/30 21:39:16

  Modified:    src      Makefile.am
  Log:
  Force buildmark.c to be rebuilt for every Apache compile, as is done
  with the 1.3 configuration system.
  
  Revision  Changes    Path
  1.2       +7 -2      apache-2.0/src/Makefile.am
  
  Index: Makefile.am
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/Makefile.am,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -d -u -r1.1 -r1.2
  --- Makefile.am	1999/11/29 23:44:35	1.1
  +++ Makefile.am	1999/12/01 05:39:16	1.2
  @@ -2,7 +2,7 @@
   SUBDIRS=ap main modules os $(REGEX_DIR)
   
   bin_PROGRAMS = apache
  -apache_SOURCES = modules.c buildmark.c
  +apache_SOURCES = modules.c
   apache_DEPENDENCIES = \
     $(MOD_LTLIBS) \
     $(MPM_LIB) \
  @@ -10,7 +10,12 @@
     $(OS_DIR)/libos.la \
     ap/libap.la \
     lib/apr/libapr.a \
  -  $(REGEX_LIB)
  +  $(REGEX_LIB) \
  +  buildmark.o
   
   apache_LDADD = $(apache_DEPENDENCIES) $(EXTRA_LIBS)
   
  +buildmark.o: build-buildmark
  +
  +build-buildmark:
  +	$(COMPILE) -c buildmark.c