forked from Lainports/freebsd-ports
This is a bundle of several ports covering many typical requirements for building an Apple WebObjects deployment environment. Each port is or has a dependancy with some other port in the bundle, and have therefore been lodged collectively. www/woadaptor WOAdaptor is a collection of WebObjects WebServer Adaptors. These include an Apache Module, CGI and FastCGI adaptors This is a subproject of Project Wonder and is an effort to pool enhancements and bug fixes for Apple's open source codebase. WWW: http://wonder.sourceforge.net/WOAdaptor.html PR: ports/117299 Submitted by: Quinton Dolan <q@onthenet.com.au>
38 lines
680 B
Text
38 lines
680 B
Text
--- Makefile.orig Tue Jul 4 13:02:19 2006
|
|
+++ Makefile Thu Apr 12 13:34:51 2007
|
|
@@ -21,7 +21,7 @@
|
|
touch ${COMMON_TARGETS}
|
|
for adaptor in $(ADAPTORS) Adaptor ; do \
|
|
echo Cleaning $$adaptor ; \
|
|
- ( cd $${adaptor} ; make clean ) ; \
|
|
+ ( cd $${adaptor} ; $(MAKE) $(MFLAGS) clean ) ; \
|
|
done
|
|
|
|
OS_NOT_DEFINED:
|
|
@@ -29,22 +29,9 @@
|
|
exit 1
|
|
|
|
${COMMON_TARGETS}: Adaptor
|
|
- cd Adaptor ; make
|
|
+ cd Adaptor ; $(MAKE) $(MFLAGS)
|
|
|
|
-CGI::
|
|
- cd CGI ; make
|
|
+$(ADAPTORS) :
|
|
+ $(MAKE) -C $@ $(MFLAGS)
|
|
|
|
-Apache::
|
|
- cd Apache ; make
|
|
-
|
|
-Apache2::
|
|
- cd Apache2 ; make
|
|
-
|
|
-Apache2.2::
|
|
- cd Apache2.2 ; make
|
|
-
|
|
-IIS::
|
|
- cd IIS ; make
|
|
-
|
|
-NSAPI::
|
|
- cd NSAPI ; make
|
|
+.PHONY: all clean $(ADAPTORS)
|