diff options
author | Robin Watts <robin.watts@artifex.com> | 2010-01-07 10:53:36 +0000 |
---|---|---|
committer | Robin Watts <robin.watts@artifex.com> | 2010-01-07 10:53:36 +0000 |
commit | a4e3c0888481263968f48b63d8dfe30acf5ff462 (patch) | |
tree | 756d81dd83ea1ca7bf64c4a064fffac4993d839b /common | |
parent | 5b40130739a5927ece1b3d74b3f28306b79a0253 (diff) |
Changes to the MSVC makefiles to prepare for the prototype vs2005 solution
file. Firstly, we introduce an SBR symbol; if this is set when invoking the
makefile, we add a new flag to the C compiler (held in SBRFLAGS) to cause
the generation of the browse data for each source file. Next, we introduce a
new bsc build target to combine those .sbr files into appropriate .bsc ones.
The final change is enable debug builds to put their builds into debugobj
rather than obj directories.
With luck, this should cause no differences for anyone other than me.
git-svn-id: http://svn.ghostscript.com/ghostscript/trunk@10592 a1074d23-0009-0410-80fe-cf8c14f379e6
Diffstat (limited to 'common')
-rw-r--r-- | common/msvc_top.mak | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/common/msvc_top.mak b/common/msvc_top.mak index 12385379c..4334e571c 100644 --- a/common/msvc_top.mak +++ b/common/msvc_top.mak @@ -118,6 +118,7 @@ $(GENDIR)/ldgs.tr: FORCE PSLIBDIR=$(PSLIBDIR) PSRESDIR=$(PSRESDIR)\ DEVSTUDIO="$(DEVSTUDIO)" \ XCFLAGS="$(XCFLAGS)" \ + SBRFLAGS="$(SBRFLAGS)" \ COMPILE_INITS=$(COMPILE_INITS) PCLXL_ROMFS_ARGS="$(PCLXL_ROMFS_ARGS)" PJL_ROMFS_ARGS="$(PJL_ROMFS_ARGS)" \ UFST_ROOT=$(UFST_ROOT) UFST_BRIDGE=$(UFST_BRIDGE) UFST_LIB_EXT=$(UFST_LIB_EXT) \ UFST_ROMFS_ARGS="$(UFST_ROMFS_ARGS)" \ @@ -163,6 +164,7 @@ $(GENDIR)/ldgs.tr: FORCE PSLIBDIR=$(PSLIBDIR) PSRESDIR=$(PSRESDIR)\ DEVSTUDIO="$(DEVSTUDIO)" \ XCFLAGS="$(XCFLAGS)" \ + SBRFLAGS="$(SBRFLAGS)" \ COMPILE_INITS=$(COMPILE_INITS) PCLXL_ROMFS_ARGS="$(PCLXL_ROMFS_ARGS)" PJL_ROMFS_ARGS="$(PJL_ROMFS_ARGS)" \ UFST_ROOT=$(UFST_ROOT) UFST_BRIDGE=$(UFST_BRIDGE) UFST_LIB_EXT=$(UFST_LIB_EXT) \ UFST_ROMFS_ARGS="$(UFST_ROMFS_ARGS)" \ |