1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277
|
# Copyright (C) 1991, 1995 Aladdin Enterprises. All rights reserved.
#
# This file is part of GNU Ghostscript.
#
# GNU Ghostscript is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY. No author or distributor accepts responsibility to
# anyone for the consequences of using it or for whether it serves any
# particular purpose or works at all, unless he says so in writing. Refer
# to the GNU Ghostscript General Public License for full details.
#
# makefile for MS-DOS MSC 7.0 platform.
# Thanks to Phil Conrad and Thomas Hiller for earlier versions of this file.
# NOTE: Do NOT compile iscan.c or gdevpcfb.c with optimization.
# ------------------------------- Options ------------------------------- #
###### This section is the only part of the file you should need to edit.
# ------ Generic options ------ #
# Define the directory that will hold documentation at runtime.
GS_DOCDIR=c:/gs
# Define the default directory/ies for the runtime
# initialization and font files. Separate multiple directories with \;.
# Use / to indicate directories, not a single \.
GS_LIB_DEFAULT=.;c:/gs\;c:/gs/fonts
# Define the name of the interpreter initialization file.
# (There is no reason to change this.)
GS_INIT=gs_init.ps
# Choose generic configuration options.
# Setting DEBUG=1 includes debugging features (-Z switch) in the code.
# Code runs substantially slower even if no debugging switches are set,
# and also takes about another 25K of memory.
DEBUG=0
# Setting TDEBUG=1 includes symbol table information for the debugger,
# and also enables stack checking. Code is substantially slower and larger.
TDEBUG=0
# Setting NOPRIVATE=1 makes private (static) procedures and variables public,
# so they are visible to the debugger and profiler.
# No execution time or space penalty, just larger .OBJ and .EXE files.
NOPRIVATE=0
# Define the name of the executable file.
GS=gs
# Define the directory where the IJG JPEG library sources are stored.
# You may have to change this if the IJG library version changes.
# See jpeg.mak for more information.
JSRCDIR=jpeg-5a
# Define any other compilation flags. Including -DA4 makes A4 paper size
# the default for most, but not, printer drivers.
CFLAGS=
# ------ Platform-specific options ------ #
# Define the drive, directory, and compiler name for the Microsoft C files.
# COMP is the full compiler path name (normally \msc\bin\wcc386p).
# LINK is the full linker path name (normally \msc\bin\link).
# INCDIR contains the include files (normally \msc\include).
# LIBDIR contains the library files (normally \msc\lib).
# Note that INCDIR and LIBDIR are always followed by a \,
# so if you want to use the current directory, use an explicit '.'.
COMP=\msc\bin\cl
LINK=\msc\bin\link /NOI /BATCH /CPARMAX:1 /ONERROR:NOEXE
INCDIR=\msc\include
LIBDIR=\msc\lib
# Define the processor (CPU) type. Currently the only acceptable value
# is 286. (386, 486, and 586 should be supported, but MSC apparently
# doesn't provide any way to generate 16-bit code if you tell it you have
# a 32-bit processor.)
CPU_TYPE=286
# Define the math coprocessor (FPU) type.
# Options are -1 (optimize for no FPU), 0 (optimize for FPU present,
# but do not require a FPU), 87, 287, or 387.
# If you have a 486 or Pentium CPU, you should normally set FPU_TYPE to 387,
# since most of these CPUs include the equivalent of an 80387 on-chip;
# however, the 486SX and the Cyrix 486SLC do not have an on-chip FPU, so if
# you have one of these CPUs and no external FPU, set FPU_TYPE to -1 or 0.
# An xx87 option means that the executable will run only if a FPU
# of that type (or higher) is available: this is NOT currently checked
# at runtime.
FPU_TYPE=0
# ---------------------------- End of options ---------------------------- #
# Define the platform name.
PLATFORM=msc_
# Define the name of the makefile -- used in dependencies.
#MAKEFILE=msc.mak
MAKEFILE=makefile
# Define the ANSI-to-K&R dependency. Microsoft C accepts ANSI syntax,
# but we need to preconstruct ccf.tr to get around the limit on
# the maximum length of a command line.
AK=ccf.tr
# Define the syntax for command, object, and executable files.
CMD=.bat
O=-o
OBJ=obj
XE=.exe
# Define the current directory prefix and shell invocations.
D=\\
EXPP=
SH=
SHP=
# Define the arguments for genconf.
CONFILES=-p %s+ -o obj.tr
# Define the generic compilation flags.
PLATOPT=
INTASM=
PCFBASM=
# Define the generic compilation rules.
.asm.obj:
$(ASM) $(ASMFLAGS) $<;
# Make sure we get the right default target for make.
all: gs$(XE)
# Define the compilation flags.
!if $(CPU_TYPE)>400
CPFLAGS=/G4
!else if $(CPU_TYPE)>300
CPFLAGS=/G3
!else if $(CPU_TYPE)>200
CPFLAGS=/G2
!else if $(CPU_TYPE)>100
CPFLAGS=/G1
!else
CPFLAGS=/G0
!endif
!if $(FPU_TYPE)>0
FPFLAGS=/FPi87
!else
FPFLAGS=/FPi
!endif
!if $(NOPRIVATE)!=0
CP=/DNOPRIVATE
!else
CP=
!endif
!if $(DEBUG)!=0
CD=/DDEBUG /Gt128
!else
CD=
!endif
!if $(TDEBUG)!=0
CT=/f /Zi /Od
LCT=/CO /FAR /PACKC
!else
CT=
#CT=/f- /Ot /Oi /Ol /Oe /Og /Gs
LCT=/EXE /FAR /PACKC
!endif
!if $(DEBUG)!=0 || $(TDEBUG)!=0
CS=/Ge
!else
CS=/Gs
!endif
GENOPT=$(CP) $(CD) $(CT) $(CS) /AL /W2 /batch /nologo
CCFLAGS=$(PLATOPT) $(FPFLAGS) $(CPFLAGS) $(CFLAGS) $(XCFLAGS)
CC=$(COMP) /c $(CCFLAGS) @ccf.tr
CCC=$(CC) /Za
CCD=$(CC)
CCINT=$(CC) /Za
.c.obj:
$(CCC) $<
# Define the files to be removed by `make clean'.
# nmake expands macros when encountered, not when used,
# so this must precede the !include statements.
BEGINFILES=ccf.tr
# -------------------------- Auxiliary programs --------------------------- #
ccf.tr: $(MAKEFILE)
echo $(GENOPT) /I$(INCDIR) >ccf.tr
# No special gconfig_.h is needed.
# Microsoft `make' supports output redirection.
gconfig_.h: msc.mak
echo /* This file deliberately left blank. */ >gconfig_.h
gconfigv.h: msc.mak $(MAKEFILE) echogs$(XE)
$(EXP)echogs -w gconfigv.h -x 23 define USE_ASM -x 2028 -q $(USE_ASM)-0 -x 29
$(EXP)echogs -a gconfigv.h -x 23 define USE_FPU -x 2028 -q $(FPU_TYPE)-0 -x 29
# ------ Devices and features ------ #
# Choose the language feature(s) to include. See gs.mak for details.
FEATURE_DEVS=level1.dev filter.dev
# Choose the device(s) to include. See devs.mak for details.
DEVICE_DEVS=vga.dev ega.dev svga16.dev
DEVICE_DEVS1=atiw.dev tseng.dev tvga.dev
DEVICE_DEVS3=deskjet.dev djet500.dev laserjet.dev ljetplus.dev ljet2p.dev ljet3.dev ljet4.dev
DEVICE_DEVS4=cdeskjet.dev cdjcolor.dev cdjmono.dev cdj550.dev pj.dev pjxl.dev pjxl300.dev
DEVICE_DEVS6=epson.dev eps9high.dev ibmpro.dev bj10e.dev bj200.dev
DEVICE_DEVS8=pcxmono.dev pcxgray.dev pcx16.dev pcx256.dev pcx24b.dev
DEVICE_DEVS10=tiffcrle.dev tiffg3.dev tiffg32d.dev tiffg4.dev tifflzw.dev tiffpack.dev
!include gs.mak
!include jpeg.mak
!include devs.mak
# -------------------------------- Library -------------------------------- #
# The Microsoft C platform
# Eventually we need a gp_imsc.$(OBJ)....
msc__=gp_iwatc.$(OBJ) gp_msdos.$(OBJ) gp_dosfb.$(OBJ) gp_dosfs.$(OBJ) gp_dosfe.$(OBJ)
msc_.dev: $(msc__)
$(SETMOD) msc_ $(msc__)
gp_iwatc.$(OBJ): gp_iwatc.c $(string__h) $(gx_h) $(gp_h)
# ----------------------------- Main program ------------------------------ #
CCBEGIN=$(CCC) *.c
# Interpreter main program
GS_ALL=gs.$(OBJ) $(INT_ALL) $(INTASM) $(LIB_ALL) obj.tr lib.tr
$(GS)$(XE): $(GS_ALL) $(DEVS_ALL)
$(LINK) /SEG:256 /STACK:8192 $(LCT) gs @obj.tr ,,$(GS),$(GS);
|