1
0
mirror of https://github.com/apache/httpd.git synced 2026-01-13 21:42:17 +03:00
Files
apache/test/Makefile.in
Graham Leggett 2cb5dbf511 Distinguish properly between the bindir and sbindir directories when
installing binaries. Previously all binaries were silently installed to
sbindir, whether they were system administration commands or not.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1220846 13f79535-47bb-0310-9956-ffa450edef68
2011-12-19 17:00:49 +00:00

21 lines
512 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)