summaryrefslogtreecommitdiffstats
path: root/Makefile.win
diff options
context:
space:
mode:
authorWilliam A. Rowe Jr <wrowe@apache.org>2000-05-06 17:02:13 +0200
committerWilliam A. Rowe Jr <wrowe@apache.org>2000-05-06 17:02:13 +0200
commitd8c829e6affef69e97d3b46b108c2515fec65026 (patch)
tree727f1934e3a4ef84ef32b134909b4fd56b1249bd /Makefile.win
parentserious bug fix: (diff)
downloadapache2-d8c829e6affef69e97d3b46b108c2515fec65026.tar.xz
apache2-d8c829e6affef69e97d3b46b108c2515fec65026.zip
First crack at getting Apache to build with pcre in Win32. Cleans up all the gen_ projects to strip off garbage files, as well, and follows the same pattern for dftables. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85161 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'Makefile.win')
-rw-r--r--Makefile.win8
1 files changed, 5 insertions, 3 deletions
diff --git a/Makefile.win b/Makefile.win
index 1be8461c2f..9933b5b536 100644
--- a/Makefile.win
+++ b/Makefile.win
@@ -68,9 +68,11 @@ _build:
$(MAKE) $(MAKEOPT) -f aprlib.mak CFG="aprlib - Win32 $(LONG)" RECURSE=0 $(CTARGET)
$(MAKE) $(MAKEOPT) -f aprlibdll.mak CFG="aprlibdll - Win32 $(LONG)" RECURSE=0 $(CTARGET)
cd ..\..
- cd regex
- $(MAKE) $(MAKEOPT) -f regex.mak CFG="regex - Win32 $(LONG)" RECURSE=0 $(CTARGET)
- cd ..
+ cd lib\pcre
+ $(MAKE) $(MAKEOPT) -f dftables.mak CFG="dftables - Win32 $(LONG)" RECURSE=0 $(CTARGET)
+ $(MAKE) $(MAKEOPT) -f pcre.mak CFG="pcre - Win32 $(LONG)" RECURSE=0 $(CTARGET)
+ $(MAKE) $(MAKEOPT) -f pcreposix.mak CFG="pcreposix - Win32 $(LONG)" RECURSE=0 $(CTARGET)
+ cd ..\..
cd ap
$(MAKE) $(MAKEOPT) -f ap.mak CFG="ap - Win32 $(LONG)" RECURSE=0 $(CTARGET)
cd ..