mirror of
https://github.com/apache/httpd.git
synced 2025-07-25 16:11:32 +00:00

Submitted by: John Bampton <jbampton gmail.com> Github: closes #520 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1924446 13f79535-47bb-0310-9956-ffa450edef68
57 lines
1.1 KiB
Plaintext
57 lines
1.1 KiB
Plaintext
#
|
|
# Get the 'head' of the build environment. This includes default targets and
|
|
# paths to tools
|
|
#
|
|
|
|
include $(AP_WORK)/build/NWGNUhead.inc
|
|
|
|
#
|
|
# build this level's files
|
|
|
|
#
|
|
# If there is an NLM target, put it here
|
|
#
|
|
TARGET_nlm = \
|
|
$(OBJDIR)/ab.nlm \
|
|
$(OBJDIR)/htpasswd.nlm \
|
|
$(OBJDIR)/htdigest.nlm \
|
|
$(OBJDIR)/htdbm.nlm \
|
|
$(OBJDIR)/htcacheclean.nlm \
|
|
$(OBJDIR)/httxt2dbm.nlm \
|
|
$(OBJDIR)/logres.nlm \
|
|
$(OBJDIR)/rotlogs.nlm \
|
|
$(EOLIST)
|
|
|
|
# Allow the debugging modules to be built if WITH_DEBUGGING is defined
|
|
ifeq "$(WITH_DEBUGGING)" "1"
|
|
TARGET_nlm += $(OBJDIR)/firehose.nlm
|
|
endif
|
|
|
|
#
|
|
# implement targets and dependencies (leave this section alone)
|
|
#
|
|
|
|
libs :: $(OBJDIR) $(TARGET_lib)
|
|
|
|
nlms :: libs $(TARGET_nlm)
|
|
|
|
#
|
|
# Updated this target to create necessary directories and copy files to the
|
|
# correct place. (See $(AP_WORK)/build/NWGNUhead.inc for examples)
|
|
#
|
|
install :: nlms FORCE
|
|
$(call COPY,$(OBJDIR)/*.nlm, $(INSTALLBASE)/bin/)
|
|
|
|
#
|
|
# Any specialized rules here
|
|
#
|
|
|
|
#
|
|
# Include the 'tail' makefile that has targets that depend on variables defined
|
|
# in this makefile
|
|
#
|
|
|
|
include $(APBUILD)/NWGNUtail.inc
|
|
|
|
|