diff options
author | Paul Querna <pquerna@apache.org> | 2005-07-07 01:15:34 +0200 |
---|---|---|
committer | Paul Querna <pquerna@apache.org> | 2005-07-07 01:15:34 +0200 |
commit | 4e21137318d78f71020ae75b614dad7d2e644191 (patch) | |
tree | 1523cdbe50e36b2d55250b55909bf1707b29173a /support/Makefile.in | |
parent | Wrap this type in a macro since it seems to be bouncing from (diff) | |
download | apache2-4e21137318d78f71020ae75b614dad7d2e644191.tar.xz apache2-4e21137318d78f71020ae75b614dad7d2e644191.zip |
Add the httxt2dbm utility to create DBM files for RewriteMap. This replaces the txt2dbm script in the manual, and allows the use of any available DBM format.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@209539 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'support/Makefile.in')
-rw-r--r-- | support/Makefile.in | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/support/Makefile.in b/support/Makefile.in index 25dda638c1..53672e2583 100644 --- a/support/Makefile.in +++ b/support/Makefile.in @@ -3,7 +3,7 @@ DISTCLEAN_TARGETS = apxs apachectl dbmmanage log_server_status \ CLEAN_TARGETS = suexec -PROGRAMS = htpasswd htdigest rotatelogs logresolve ab checkgid htdbm htcacheclean +PROGRAMS = htpasswd htdigest rotatelogs logresolve ab checkgid htdbm htcacheclean httxt2dbm TARGETS = $(PROGRAMS) PROGRAM_LDADD = $(UTIL_LDFLAGS) $(PROGRAM_DEPENDENCIES) $(EXTRA_LIBS) $(AP_LIBS) @@ -65,3 +65,8 @@ suexec: $(suexec_OBJECTS) htcacheclean_OBJECTS = htcacheclean.lo htcacheclean: $(htcacheclean_OBJECTS) $(LINK) $(htcacheclean_LTFLAGS) $(htcacheclean_OBJECTS) $(PROGRAM_LDADD) + +httxt2dbm_OBJECTS = httxt2dbm.lo +httxt2dbm: $(httxt2dbm_OBJECTS) + $(LINK) $(httxt2dbm_LTFLAGS) $(httxt2dbm_OBJECTS) $(PROGRAM_LDADD) + |