diff options
author | Alex Cherepanov <alex.cherepanov@artifex.com> | 2003-12-14 01:07:17 +0000 |
---|---|---|
committer | Alex Cherepanov <alex.cherepanov@artifex.com> | 2003-12-14 01:07:17 +0000 |
commit | 27ed9e414bf7402b9b5e609eb8ec3a5f5b7b7d62 (patch) | |
tree | df472541d7a2093860c2dca89db93c719df11b6a /gs/src/msvc32.mak | |
parent | 2fe30fef7a2ae36b34e5ca1de3426b813e717736 (diff) |
Fix MSVC debug targets: add explicit makefile specification.
Fix bug 687205.
DETAILS:
Debug targets have always been broken on Windows because nmake by
default looks for "MAKEFILE" and fails. Until recently, the default
target was built without the -O2 flag and could be used for debugging.
This patch adds the correct filename explicitly to the debug target
so it can be used instead.
git-svn-id: http://svn.ghostscript.com/ghostscript/trunk@4460 a1074d23-0009-0410-80fe-cf8c14f379e6
Diffstat (limited to 'gs/src/msvc32.mak')
-rw-r--r-- | gs/src/msvc32.mak | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gs/src/msvc32.mak b/gs/src/msvc32.mak index e57870792..04c2e9f8f 100644 --- a/gs/src/msvc32.mak +++ b/gs/src/msvc32.mak @@ -656,9 +656,9 @@ $(UNINSTALL_XE): $(PSOBJ)dwuninst.obj $(PSOBJ)dwuninst.res $(PSSRC)dwuninst.def DEBUGDEFS=BINDIR=.\debugbin GLGENDIR=.\debugobj GLOBJDIR=.\debugobj PSLIBDIR=.\lib PSGENDIR=.\debugobj PSOBJDIR=.\debugobj DEBUG=1 TDEBUG=1 debug: - nmake $(DEBUGDEFS) + nmake -f $(MAKEFILE) $(DEBUGDEFS) debugclean: - nmake $(DEBUGDEFS) clean + nmake -f $(MAKEFILE) $(DEBUGDEFS) clean # end of makefile |