diff options
author | Greg Stein <gstein@apache.org> | 2000-11-26 16:27:33 +0100 |
---|---|---|
committer | Greg Stein <gstein@apache.org> | 2000-11-26 16:27:33 +0100 |
commit | d9f25a3c133f7de85d8cbdacdbf0e14d39a4ed4d (patch) | |
tree | 85dc68f5c40899bf74ab6b77d61df30cb8157af5 /test/Makefile.in | |
parent | Start the oft-discussed, but oft-punted lib/aputil library. Drop in a first (diff) | |
download | apache2-d9f25a3c133f7de85d8cbdacdbf0e14d39a4ed4d.tar.xz apache2-d9f25a3c133f7de85d8cbdacdbf0e14d39a4ed4d.zip |
*) Put lib/aputil/ into the INCLUDES path
*) add a Makefile.in to test/ to help with building test programs (these are
not part of the build; just manual compiles right now)
*) add test/dbu.c as a quick test of apu_dbm
[ dbu.c originally came from the SDBM package ]
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87082 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test/Makefile.in')
-rw-r--r-- | test/Makefile.in | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/test/Makefile.in b/test/Makefile.in new file mode 100644 index 0000000000..e7770f7fbb --- /dev/null +++ b/test/Makefile.in @@ -0,0 +1,15 @@ + +PROGRAMS = dbu +targets = $(PROGRAMS) + +PROGRAM_LDADD = $(EXTRA_LDFLAGS) $(PROGRAM_DEPENDENCIES) $(EXTRA_LIBS) +PROGRAM_DEPENDENCIES = ../ap/libap.la \ + ../lib/aputil/libaputil.la \ + ../lib/sdbm/libsdbm.la \ + ../lib/apr/$(LIBPRE)apr.a + +include $(top_srcdir)/build/rules.mk + +dbu_OBJECTS = dbu.lo +dbu: $(dbu_OBJECTS) + $(LINK) $(dbu_OBJECTS) $(PROGRAM_LDADD) |