mirror of
https://github.com/apache/httpd.git
synced 2025-07-22 00:36:09 +00:00

check some variations on forward, reverse and mixed vhosts and also using a unix: domain socket backend. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1896002 13f79535-47bb-0310-9956-ffa450edef68
26 lines
569 B
Makefile
26 lines
569 B
Makefile
|
|
# no targets: we don't want to build anything by default. if you want the
|
|
# test programs, then "make test"
|
|
TARGETS =
|
|
|
|
bin_PROGRAMS =
|
|
|
|
PROGRAM_LDADD = $(EXTRA_LDFLAGS) $(PROGRAM_DEPENDENCIES) $(EXTRA_LIBS)
|
|
PROGRAM_DEPENDENCIES = \
|
|
$(top_srcdir)/srclib/apr-util/libaprutil.la \
|
|
$(top_srcdir)/srclib/apr/libapr.la
|
|
|
|
include $(top_builddir)/build/rules.mk
|
|
|
|
test: $(bin_PROGRAMS)
|
|
|
|
# example for building a test proggie
|
|
# dbu_OBJECTS = dbu.lo
|
|
# dbu: $(dbu_OBJECTS)
|
|
# $(LINK) $(dbu_OBJECTS) $(PROGRAM_LDADD)
|
|
|
|
clean:
|
|
rm -rf gen
|
|
|
|
distclean:
|
|
rm -f pyhttpd/config.ini
|