diff options
author | Greg Stein <gstein@apache.org> | 2000-12-07 12:52:17 +0100 |
---|---|---|
committer | Greg Stein <gstein@apache.org> | 2000-12-07 12:52:17 +0100 |
commit | b18b5e32c3d604da3b145d76504a17560f3d4866 (patch) | |
tree | 5ae257bcca54642bc23248f86f8b3a931e1b3590 /test | |
parent | *) fix up buildexports.sh: (diff) | |
download | apache2-b18b5e32c3d604da3b145d76504a17560f3d4866.tar.xz apache2-b18b5e32c3d604da3b145d76504a17560f3d4866.zip |
*) 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.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87250 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test')
-rw-r--r-- | test/Makefile.in | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/test/Makefile.in b/test/Makefile.in index bbdad4d1b3..d34eb21712 100644 --- a/test/Makefile.in +++ b/test/Makefile.in @@ -1,6 +1,9 @@ +# 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 \ @@ -8,6 +11,8 @@ PROGRAM_DEPENDENCIES = ../srclib/apr-util/libaprutil.la \ include $(top_srcdir)/build/rules.mk +test: $(PROGRAMS) + dbu_OBJECTS = dbu.lo dbu: $(dbu_OBJECTS) $(LINK) $(dbu_OBJECTS) $(PROGRAM_LDADD) |