Return-Path: Delivered-To: apmail-apache-cvs-archive@apache.org Received: (qmail 74687 invoked by uid 500); 7 Dec 2000 11:52:24 -0000 Mailing-List: contact apache-cvs-help@apache.org; run by ezmlm Precedence: bulk Reply-To: new-httpd@apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list apache-cvs@apache.org Received: (qmail 74620 invoked by uid 500); 7 Dec 2000 11:52:22 -0000 Delivered-To: apmail-httpd-2.0-cvs@apache.org Date: 7 Dec 2000 11:52:20 -0000 Message-ID: <20001207115220.74580.qmail@locus.apache.org> From: gstein@locus.apache.org To: httpd-2.0-cvs@apache.org Subject: cvs commit: httpd-2.0/test Makefile.in gstein 00/12/07 03:52:19 Modified: . Makefile.in test Makefile.in Log: *) top-level: build our base libraries (srclib) first since these (by definition) have no dependencies on anything else. this will also ensure that we have *.exports available for building server/ *) add the "test" SUBDIR back in so that it gets called for "make clean" and other types of make targets. *) revise test/Makefile.in so that it does not build any test programs by default. add "make test" to build any/all test programs. Revision Changes Path 1.42 +1 -1 httpd-2.0/Makefile.in Index: Makefile.in =================================================================== RCS file: /home/cvs/httpd-2.0/Makefile.in,v retrieving revision 1.41 retrieving revision 1.42 diff -u -u -r1.41 -r1.42 --- Makefile.in 2000/12/07 04:15:27 1.41 +++ Makefile.in 2000/12/07 11:52:15 1.42 @@ -1,5 +1,5 @@ -SUBDIRS = modules os server srclib support +SUBDIRS = srclib modules os server support test PROGRAM_NAME = $(progname) PROGRAM_SOURCES = modules.c 1.4 +6 -1 httpd-2.0/test/Makefile.in Index: Makefile.in =================================================================== RCS file: /home/cvs/httpd-2.0/test/Makefile.in,v retrieving revision 1.3 retrieving revision 1.4 diff -u -u -r1.3 -r1.4 --- Makefile.in 2000/12/06 08:13:13 1.3 +++ Makefile.in 2000/12/07 11:52:17 1.4 @@ -1,12 +1,17 @@ +# no targets: we don't want to build anything by default. if you want the +# test programs, then "make test" +targets = + PROGRAMS = dbu -targets = $(PROGRAMS) PROGRAM_LDADD = $(EXTRA_LDFLAGS) $(PROGRAM_DEPENDENCIES) $(EXTRA_LIBS) PROGRAM_DEPENDENCIES = ../srclib/apr-util/libaprutil.la \ ../srclib/apr/$(LIBPRE)apr.a include $(top_srcdir)/build/rules.mk + +test: $(PROGRAMS) dbu_OBJECTS = dbu.lo dbu: $(dbu_OBJECTS)