summaryrefslogtreecommitdiff
path: root/test/Makefile.win
diff options
context:
space:
mode:
authorWilliam A. Rowe Jr <wrowe@apache.org>2007-10-18 05:32:07 +0000
committerWilliam A. Rowe Jr <wrowe@apache.org>2007-10-18 05:32:07 +0000
commit2dd9fbccbc2540d4fe2f4e52991dbfc28ded688a (patch)
treebff6e159198a14d480262eebb6dd539d92e0771b /test/Makefile.win
parentb7804e9d3160a7b0a969f941458d27d7fbd648bc (diff)
downloadapr-2dd9fbccbc2540d4fe2f4e52991dbfc28ded688a.tar.gz
Rename apr_app to clearly fall in our target tree as
[lib]aprapp-1.lib for users who want to make NT-specific binaries (and receive full unicode envvars and command line into their main() in utf8 as if nothing happened). Hook up pre-aprapp steps just like we did for apriconv. Although it's 'named' libaprapp, it's also a static lib and needs to avoid being filled with the libapriconv dll bindings just like other static libraries which depend upon another static lib (the reason for inventing these pre-dsp's). git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@585870 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test/Makefile.win')
-rw-r--r--test/Makefile.win4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Makefile.win b/test/Makefile.win
index db88659e3..4d194ae71 100644
--- a/test/Makefile.win
+++ b/test/Makefile.win
@@ -109,11 +109,11 @@ LD = link.exe
!IF "$(MODEL)" == "static"
LOCAL_LIB= ..\$(OUTDIR)\apr-1.lib
-APP_LIB= ..\build\$(OUTDIR)\apr_app-1.lib
+APP_LIB= ..\$(OUTDIR)\aprapp-1.lib
STATIC_CFLAGS = /D APR_DECLARE_STATIC
!ELSE
LOCAL_LIB= ..\$(OUTDIR)\libapr-1.lib
-APP_LIB= ..\build\$(OUTDIR)\libapr_app-1.lib
+APP_LIB= ..\$(OUTDIR)\libaprapp-1.lib
STATIC_CFLAGS =
!ENDIF