Commit 608f6ec3 authored by Greg Stein's avatar Greg Stein
Browse files

*) 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
parent 82628abb
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line

SUBDIRS = modules os server srclib support
SUBDIRS = srclib modules os server support test

PROGRAM_NAME         = $(progname)
PROGRAM_SOURCES      = modules.c
+6 −1
Original line number Diff line number Diff line

# 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)