summaryrefslogtreecommitdiff
path: root/build/rules.mk.in
diff options
context:
space:
mode:
authorJustin Erenkrantz <jerenkrantz@apache.org>2004-11-27 08:07:44 +0000
committerJustin Erenkrantz <jerenkrantz@apache.org>2004-11-27 08:07:44 +0000
commit439221058cd102a3dbfb65f488f9cd56648e199c (patch)
treeb13959b63e287bbeecb1b9914d3fc65da9ae2760 /build/rules.mk.in
parent9e804e259edc374df6e5f9e661f41c9539a0f460 (diff)
downloadhttpd-439221058cd102a3dbfb65f488f9cd56648e199c.tar.gz
Initial pass at refactoring some files to eliminate our 150K C source behemoths.
* Makefile.in: Change order of dependencies to bring in exports.o first so that we have every symbol 'used' before the linker starts processing. * build/rules.mk.in: Add a 'program-install' target which just copies httpd. * server/Makefile.in, modules/http/config2.m4: Add in new file targets. * NWGNUmakefile, libhttpd.dsp: Blind updates for Netware and Win32. (I tried.) * server/core.c: Move core_input_filter, net_time_filter, and core_output_filter and all supporting functions to... * server/core_filters.c (copied): ...here. * modules/http/http_protocol.c: Move functions from here to there...namely: * modules/http/byterange_filter.c (copied): Relocate ap_byterange_filter() and friends. * modules/http/chunk_filter.c (copied): Relocate chunk_filter(). * modules/http/http_etag.c (copied): Relocate ap_set_etag and ap_make_etag(). * modules/http/http_filters.c (copied): Relocate ap_http_filter(), ap_http_header_filter(), ap_discard_request_body(), ap_setup_client_block(), ap_should_client_block(), and ap_get_client_block(). git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@106692 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build/rules.mk.in')
-rw-r--r--build/rules.mk.in4
1 files changed, 3 insertions, 1 deletions
diff --git a/build/rules.mk.in b/build/rules.mk.in
index 38c6fe8829..24b8bcd65c 100644
--- a/build/rules.mk.in
+++ b/build/rules.mk.in
@@ -160,7 +160,7 @@ local-extraclean: local-distclean x-local-extraclean
rm -f $(EXTRACLEAN_TARGETS) ; \
fi
-local-install: $(TARGETS) $(SHARED_TARGETS) $(INSTALL_TARGETS)
+program-install: $(TARGETS) $(SHARED_TARGETS)
@if test -n '$(PROGRAMS)'; then \
test -d $(DESTDIR)$(sbindir) || $(MKINSTALLDIRS) $(DESTDIR)$(sbindir); \
list='$(PROGRAMS)'; for i in $$list; do \
@@ -168,6 +168,8 @@ local-install: $(TARGETS) $(SHARED_TARGETS) $(INSTALL_TARGETS)
done; \
fi
+local-install: program-install $(INSTALL_TARGETS)
+
# to be filled in by the actual Makefile if extra commands are needed
x-local-depend x-local-clean x-local-distclean x-local-extraclean: