Commit d924e826 authored by Ryan Bloom's avatar Ryan Bloom
Browse files

Add the support directory back into the build process.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85053 13f79535-47bb-0310-9956-ffa450edef68
parent 3c66cf23
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@ top_srcdir = @top_srcdir@
srcdir    = @srcdir@
VPATH     = @srcdir@

SUBDIRS = ap lib main modules os $(REGEX_DIR)
SUBDIRS = ap lib main modules os support $(REGEX_DIR)

PROGRAM_NAME         = $(progname)
PROGRAM_SOURCES      = modules.c buildmark.c
+2 −1
Original line number Diff line number Diff line
@@ -169,7 +169,8 @@ AC_ARG_WITH(program-name,
  progname="httpd"] )

APACHE_FAST_OUTPUT(Makefile ap/Makefile lib/Makefile main/Makefile
            modules/Makefile os/Makefile)
            modules/Makefile os/Makefile support/Makefile)

APACHE_FAST_GENERATE
	
dnl ## Build modules.c

support/Makefile.in

0 → 100644
+36 −0
Original line number Diff line number Diff line

DEPTH     = ..
top_srcdir = @top_srcdir@
srcdir    = @srcdir@
VPATH     = @srcdir@

PROGRAMS = htpasswd htdigest rotatelogs logresolve ab
targets  = $(PROGRAMS)

PROGRAM_LDADD        = $(EXTRA_LDFLAGS) $(PROGRAM_DEPENDENCIES) $(EXTRA_LIBS)
PROGRAM_DEPENDENCIES = ../lib/apr/$(LIBPRE)apr.a \
	../ap/libap.la

include $(top_srcdir)/build/rules.mk
include $(top_srcdir)/build/program.mk

htpasswd_OBJECTS = htpasswd.lo
htpasswd: $(htpasswd_OBJECTS)
	$(LINK) $(htpasswd_OBJECTS) $(PROGRAM_LDADD)

htdigest_OBJECTS = htdigest.lo
htdigest: $(htdigest_OBJECTS)
	$(LINK) $(htdigest_OBJECTS) $(PROGRAM_LDADD)

rotatelogs_OBJECTS = rotatelogs.lo
rotatelogs: $(rotatelogs_OBJECTS)
	$(LINK) $(rotatelogs_OBJECTS) $(PROGRAM_LDADD)

logresolve_OBJECTS = logresolve.lo
logresolve: $(logresolve_OBJECTS)
	$(LINK) $(logresolve_OBJECTS) $(PROGRAM_LDADD)

ab_OBJECTS = ab.lo
ab: $(ab_OBJECTS)
	$(LINK) $(ab_OBJECTS) $(PROGRAM_LDADD)