# Copyright (C) 1989, 1996, 1997, 1998 Aladdin Enterprises. All rights reserved. # # This file is part of Aladdin Ghostscript. # # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND. No author # or distributor accepts any responsibility for the consequences of using it, # or for whether it serves any particular purpose or works at all, unless he # or she says so in writing. Refer to the Aladdin Ghostscript Free Public # License (the "License") for full details. # # Every copy of Aladdin Ghostscript must include a copy of the License, # normally in a plain ASCII text file named PUBLIC. The License grants you # the right to copy, modify and redistribute Aladdin Ghostscript, but only # under certain conditions described in the License. Among other things, the # License requires that the copyright notice and this notice be preserved on # all copies. # Generic makefile, common to all platforms, products, and configurations. # The platform-specific makefiles `include' this file. # Ghostscript makefiles cannot use default compilation rules, because # they may place the output in (multiple) different directories. # All compilation rules must have the form # <> $(O_)<> $(C_)<> # to cope with the divergent syntaxes of the various compilers. # Spaces must appear where indicated, and nowhere else; in particular, # there must be no space between $(O_) and the output file name. # The platform-specific makefiles define the following symbols: # GS - the name of the executable (without the extension, if any). # GS_LIB_DEFAULT - the default directory/ies for searching for the # initialization and font files at run time. # SEARCH_HERE_FIRST - the default setting of -P (whether or not to # look for files in the current directory first). # GS_DOCDIR - the directory where documentation will be available # at run time. # JSRCDIR - the directory where the IJG JPEG library source code # is stored (at compilation time). # JVERSION - the major version number of the IJG JPEG library. # PSRCDIR, PVERSION - the same for libpng. # ZSRCDIR - the same for zlib. # SHARE_JPEG - normally 0; if set to 1, asks the linker to use # an existing compiled libpng (-ljpeg) instead of compiling and # linking libpng explicitly. (We strongly recommend against # doing this: see make.txt details.) # JPEG_NAME - the name of the shared library, currently always # jpeg (libjpeg, -lpjeg). # SHARE_LIBPNG - normally 0; if set to 1, asks the linker to use # an existing compiled libpng (-lpng) instead of compiling and # linking libpng explicitly. # LIBPNG_NAME, the name of the shared libpng, currently always # png (libpng, -lpng). # SHARE_ZLIB - normally 0; if set to 1, asks the linker to use # an existing compiled zlib (-lgz or -lz) instead of compiling # and linking libgz/libz explicitly. # ZLIB_NAME - the name of the shared zlib, either gz (for libgz, -lgz) # or z (for libz, -lz). # CONFIG - a configuration ID, added at the request of a customer, # that is supposed to help in maintaining multiple variants in # a single directory. Normally this is an empty string; # it may be any string that is legal as part of a file name. # DEVICE_DEVS - the devices to include in the executable. # See devs.mak for details. # DEVICE_DEVS1...DEVICE_DEVS15 - additional devices, if the definition # of DEVICE_DEVS doesn't fit on one line. See devs.mak for details. # FEATURE_DEVS - what features to include in the executable. # Normally this is one of: # psl1 - a PostScript Level 1 language interpreter. # psl2 - a PostScript Level 2 language interpreter. # psl3 - a PostScript LanguageLevel 3 language # interpreter. # and/or # pdf - a PDF 1.2 interpreter. # psl3 includes everything in psl2, and psl2 includes everything # in psl1. For backward compatibility, level1 is a synonym for # psl1, and level2 is a synonym for psl2. # The following feature may be added to any of the standard # configurations: # ccfonts - precompile fonts into C, and link them # with the executable. See fonts.txt for details. # The remaining features are of interest primarily to developers # who want to "mix and match" features to create custom # configurations: # btoken - support for binary token encodings. # Included automatically in the dps and psl2 features. # cidfont - (currently partial) support for CID-keyed fonts. # color - support for the Level 1 CMYK color extensions. # Included automatically in the dps and psl2 features. # compfont - support for composite (type 0) fonts. # Included automatically in the psl2 feature. # dct - support for DCTEncode/Decode filters. # Included automatically in the psl2 feature. # dps - (partial) support for Display PostScript extensions: # see language.txt for details. # dpsnext - (partial) support for Display PostScript # extensions with NeXT's additions. # epsf - support for recognizing and skipping the binary # header of MS-DOS EPSF files. # filter - support for Level 2 filters (other than eexec, # ASCIIHexEncode/Decode, NullEncode, PFBDecode, # RunLengthEncode/Decode, and SubFileDecode, which are # always included, and DCTEncode/Decode, # which are separate). # Included automatically in the psl2 feature. # fzlib - support for zlibEncode/Decode filters. # ttfont - support for TrueType fonts. # type1 - support for Type 1 fonts and eexec; # normally included automatically in all configurations. # type32 - support for Type 32 (downloaded bitmap) fonts. # Included automatically in the psl2 feature. # type42 - support for Type 42 (embedded TrueType) fonts. # Included automatically in the psl2 feature. # There are quite a number of other sub-features that can be # selectively included in or excluded from a configuration, # but the above are the ones that are most likely to be of # interest. # COMPILE_INITS - normally 0; if set to 1, compiles the PostScript # language initialization files (gs_init.ps et al) into the # executable, eliminating the need for these files to be present # at run time. # BAND_LIST_STORAGE - normally file; if set to memory, stores band # lists in memory (with compression if needed). # BAND_LIST_COMPRESSOR - normally zlib: selects the compression method # to use for band lists in memory. # FILE_IMPLEMENTATION - normally stdio; if set to fd, uses file # descriptors instead of buffered stdio for file I/O; if set to # both, provides both implementations with different procedure # names for the fd-based implementation (see sfxfd.c for # more information). # EXTEND_NAMES - a value N between 0 and 6, indicating that the name # table should have a capacity of 2^(16+N) names. This normally # should be set to 0 (or left undefined), since non-zero values # result in a larger fixed space overhead and slightly slower code. # SYSTEM_CONSTANTS_ARE_WRITABLE - normally 0 (or undefined); if set to # 1, makes the system configuration constants (buildtime, copyright, # product, revision, revisiondate, serialnumber) writable. Only # one unusual application needs this. # # It is very unlikely that anyone would want to edit the remaining # symbols, but we describe them here for completeness: # GS_INIT - the name of the initialization file for the interpreter, # normally gs_init.ps. # PLATFORM - a "device" name for the platform, so that platforms can # add various kinds of resources like devices and features. # CMD - the suffix for shell command files (e.g., null or .bat). # (This is only needed in a few places.) # D - the directory separator character (\ for MS-DOS, / for Unix). # O - the string for specifying the output file from the C compiler # (-o for MS-DOS, -o ./ for Unix). # OBJ - the extension for relocatable object files (e.g., o or obj). # XE - the extension for executable files (e.g., null or .exe). # XEAUX - the extension for the executable files (e.g., null or .exe) # for the utility programs (ansi2knr and those compiled with # CCAUX). # BEGINFILES - the list of additional files that `make clean' should # delete. # CCA2K - the C invocation for the ansi2knr program, which is the only # one that doesn't use ANSI C syntax. (It is only needed if # the main C compiler also isn't an ANSI compiler.) # CCAUX - the C invocation for auxiliary programs (echogs, genarch, # genconf, gendev, geninit). # CC_ - the C invocation for normal compilation. # CCD - the C invocation for files that store into frame buffers or # device registers. Needed because some optimizing compilers # will eliminate necessary stores. # CCINT - the C invocation for compiling the main interpreter module, # normally the same as CC_: this is needed because the # Borland compiler generates *worse* code for this module # (but only this module) when optimization (-O) is turned on. # CCLEAF - the C invocation for compiling modules that contain only # leaf procedures, which don't need to build stack frames. # This is needed only because many compilers aren't able to # recognize leaf procedures on their own. # AK - if source files must be converted from ANSI to K&R syntax, # this is $(ANSI2KNR_XE); if not, it is null. # If a particular platform requires other utility programs # to be built, AK must include them too. # SHP - the prefix for invoking a shell script in the current directory # (null for MS-DOS, $(SH) ./ for Unix). # EXPP, EXP - the prefix for invoking an executable program in the # current directory (null for MS-DOS, ./ for Unix). # SH - the shell for scripts (null on MS-DOS, sh on Unix). # CONFILES - the arguments for genconf to generate the appropriate # linker control files (various). # CONFLDTR - the genconf switch for generating ld_tr. # CP_ - the command for copying one file to another. Because of # limitations in the MS-DOS/MS Windows environment, the # second argument must be either '.' (in which case the # write date may be either preserved or set to the current # date) or a file name (in which case the write date is # always updated). # RM_ - the command for deleting (a) file(s) (including wild cards, # but limited to a single file or pattern). # RMN_ = the command for deleting multiple files / patterns. # # The platform-specific makefiles must also include rules for creating # certain dynamically generated files: # gconfig_.h - this indicates the presence or absence of # certain system header files that are located in different # places on different systems. (It could be generated by # the GNU `configure' program.) # gconfigv.h - this indicates the status of certain machine- # and configuration-specific features derived from definitions # in the platform-specific makefile. #**************** PATCHES JGENDIR=$(GLGENDIR) JOBJDIR=$(GLOBJDIR) PNGGENDIR=$(GLGENDIR) PNGOBJDIR=$(GLOBJDIR) ZGENDIR=$(GLGENDIR) ZOBJDIR=$(GLOBJDIR) GLSRC=$(GLSRCDIR)$(D) GLGEN=$(GLGENDIR)$(D) GLOBJ=$(GLOBJDIR)$(D) #**************** END PATCHES # Define the name of this makefile. GS_MAK=$(GLSRC)gs.mak # Define the names of the executables. GS_XE=$(GLOBJ)$(GS)$(XE) AUXGENDIR=$(GLGENDIR) AUXGEN=$(AUXGENDIR)$(D) ANSI2KNR_XE=$(AUXGEN)ansi2knr$(XEAUX) ECHOGS_XE=$(AUXGEN)echogs$(XEAUX) GENARCH_XE=$(AUXGEN)genarch$(XEAUX) GENCONF_XE=$(AUXGEN)genconf$(XEAUX) GENDEV_XE=$(AUXGEN)gendev$(XEAUX) GENINIT_XE=$(AUXGEN)geninit$(XEAUX) # Define the names of the CONFIG-dependent header files. # gconfig*.h and gconfx*.h are generated dynamically. gconfig_h=$(GLGEN)gconfxx$(CONFIG).h gconfigf_h=$(GLGEN)gconfxc$(CONFIG).h # Watcom make insists that rules have a non-empty body! all default: $(GS_XE) $(RM_) _temp_* distclean maintainer-clean realclean: clean $(RM_) makefile clean: mostlyclean $(RM_) $(GLGEN)arch.h $(RM_) $(GS_XE) #****** FOLLOWING IS WRONG, NEEDS TO BE PER-SUBSYSTEM ****** mostlyclean: config-clean $(RMN_) $(GLOBJ)*.$(OBJ) $(GLOBJ)*.a $(GLOBJ)core $(GLOBJ)gmon.out $(RMN_) $(GLGEN)deflate.h $(GLGEN)zutil.h $(RMN_) $(GLGEN)gconfig*.c $(GLGEN)gscdefs*.c $(GLGEN)iconfig*.c $(RMN_) $(GLGEN)_temp_* $(GLGEN)_temp_*.* $(GLOBJ)*.map $(GLOBJ)*.sym $(RMN_) $(ANSI2KNR_XE) $(ECHOGS_XE) $(RMN_) $(GENARCH_XE) $(GENCONF_XE) $(GENDEV_XE) $(GENINIT_XE) $(RMN_) $(GLGEN)gs_init.c $(BEGINFILES) # Remove only configuration-dependent information. #****** FOLLOWING IS WRONG, NEEDS TO BE PER-SUBSYSTEM ****** #****** rm *.dev IS WRONG ****** config-clean: $(RMN_) *.dev $(RMN_) $(GLGEN)*.dev $(GLGEN)devs*.tr $(GLGEN)gconfig*.h $(RMN_) $(GLGEN)gconfx*.h $(GLGEN)j*.h $(RMN_) $(GLGEN)c*.tr $(GLGEN)o*.tr $(GLGEN)l*.tr # A rule to do a quick and dirty compilation attempt when first installing # the interpreter. Many of the compilations will fail: # follow this with 'make'. #****** FOLLOWING IS WRONG, TIED TO INTERPRETER ****** begin: $(RMN_) $(GLGEN)arch.h $(GLGEN)gconfig*.h $(GLGEN)gconfx*.h $(RMN_) $(GENARCH_XE) $(GS_XE) $(RMN_) $(GLGEN)gconfig*.c $(GLGEN)gscdefs*.c $(GLGEN)iconfig*.c $(RMN_) $(GLGEN)gs_init.c $(BEGINFILES) make $(GLGEN)arch.h $(GLGEN)gconfigv.h - $(CCBEGIN) $(RMN_) $(GLOBJ)gconfig.$(OBJ) $(GLOBJ)gdev*.$(OBJ) $(RMN_) $(GLOBJ)gp_*.$(OBJ) $(GLOBJ)gscdefs.$(OBJ) $(GLOBJ)gsmisc.$(OBJ) $(RMN_) $(PSOBJ)icfontab.$(OBJ) $(PSOBJ)iconfig.$(OBJ) $(RMN_) $(PSOBJ)iinit.$(OBJ) $(PSOBJ)interp.$(OBJ) # Macros for constructing the *.dev files that describe features and # devices. SETDEV=$(ECHOGS_XE) -e .dev -w- -l-dev -F -s -l-obj SETPDEV=$(ECHOGS_XE) -e .dev -w- -l-dev -F -s -l-include -lpage -l-obj SETDEV2=$(ECHOGS_XE) -e .dev -w- -l-dev2 -F -s -l-obj SETPDEV2=$(ECHOGS_XE) -e .dev -w- -l-dev2 -F -s -l-include -lpage -l-obj SETMOD=$(ECHOGS_XE) -e .dev -w- -l-obj ADDMOD=$(ECHOGS_XE) -e .dev -a- # Define the search lists and compilation switches for the third-party # libraries. The search lists must be enclosed in $(I_) and $(_I). # Note that we can't define the entire compilation command, # because this must include $(GLSRCDIR), which isn't defined yet. JI_=$(JSRCDIR) JF_= PI_=$(PSRCDIR) $(II)$(ZSRCDIR) # PF_ should include PNG_USE_CONST, but this doesn't work. #PF_=-DPNG_USE_CONST PF_= ZI_=$(ZSRCDIR) ZF_= ######################## How to define new 'features' ####################### # # One defines new 'features' exactly like devices (see devs.mak for details). # For example, one would define a feature abc by adding the following to # gs.mak: # # abc_=abc1.$(OBJ) ... # abc.dev: $(GS_MAK) $(ECHOGS_XE) $(abc_) # $(SETMOD) abc $(abc_) # $(ADDMOD) abc -obj ... [if needed] # $(ADDMOD) abc -oper ... [if appropriate] # $(ADDMOD) abc -ps ... [if appropriate] # # If the abc feature requires the presence of some other features jkl and # pqr, then the rules must look like this: # # abc_=abc1.$(OBJ) ... # abc.dev: $(GS_MAK) $(ECHOGS_XE) $(abc_) jkl.dev pqr.dev # $(SETMOD) abc $(abc_) # ... # $(ADDMOD) abc -include jkl pqr # --------------------- Configuration-dependent files --------------------- # # gconfig.h shouldn't have to depend on DEVS_ALL, but that would # involve rewriting gsconfig to only save the device name, not the # contents of the .dev files. # FEATURE_DEVS must precede DEVICE_DEVS so that devices can override # features in obscure cases. DEVS_ALL=$(PLATFORM).dev $(FEATURE_DEVS) \ $(DEVICE_DEVS) $(DEVICE_DEVS1) \ $(DEVICE_DEVS2) $(DEVICE_DEVS3) $(DEVICE_DEVS4) $(DEVICE_DEVS5) \ $(DEVICE_DEVS6) $(DEVICE_DEVS7) $(DEVICE_DEVS8) $(DEVICE_DEVS9) \ $(DEVICE_DEVS10) $(DEVICE_DEVS11) $(DEVICE_DEVS12) $(DEVICE_DEVS13) \ $(DEVICE_DEVS14) $(DEVICE_DEVS15) devs_tr=$(GLGEN)devs.tr$(CONFIG) $(devs_tr): $(GS_MAK) $(MAKEFILE) $(ECHOGS_XE) $(ECHOGS_XE) -w $(devs_tr) - -include $(PLATFORM).dev $(ECHOGS_XE) -a $(devs_tr) - $(FEATURE_DEVS) $(ECHOGS_XE) -a $(devs_tr) - $(DEVICE_DEVS) $(ECHOGS_XE) -a $(devs_tr) - $(DEVICE_DEVS1) $(ECHOGS_XE) -a $(devs_tr) - $(DEVICE_DEVS2) $(ECHOGS_XE) -a $(devs_tr) - $(DEVICE_DEVS3) $(ECHOGS_XE) -a $(devs_tr) - $(DEVICE_DEVS4) $(ECHOGS_XE) -a $(devs_tr) - $(DEVICE_DEVS5) $(ECHOGS_XE) -a $(devs_tr) - $(DEVICE_DEVS6) $(ECHOGS_XE) -a $(devs_tr) - $(DEVICE_DEVS7) $(ECHOGS_XE) -a $(devs_tr) - $(DEVICE_DEVS8) $(ECHOGS_XE) -a $(devs_tr) - $(DEVICE_DEVS9) $(ECHOGS_XE) -a $(devs_tr) - $(DEVICE_DEVS10) $(ECHOGS_XE) -a $(devs_tr) - $(DEVICE_DEVS11) $(ECHOGS_XE) -a $(devs_tr) - $(DEVICE_DEVS12) $(ECHOGS_XE) -a $(devs_tr) - $(DEVICE_DEVS13) $(ECHOGS_XE) -a $(devs_tr) - $(DEVICE_DEVS14) $(ECHOGS_XE) -a $(devs_tr) - $(DEVICE_DEVS15) # GCONFIG_EXTRAS can be set on the command line. # Note that it consists of arguments for echogs, i.e., # it isn't just literal text. GCONFIG_EXTRAS= ld_tr=$(GLGEN)ld$(CONFIG).tr $(gconfig_h) $(ld_tr) $(GLGEN)lib.tr: \ $(GS_MAK) $(MAKEFILE) $(GLSRC)version.mak $(GENCONF_XE) $(ECHOGS_XE) $(devs_tr) $(DEVS_ALL) libcore.dev $(GENCONF_XE) $(devs_tr) libcore.dev -h $(gconfig_h) $(CONFILES) $(CONFLDTR) $(ld_tr) $(ECHOGS_XE) -a $(gconfig_h) -x 23 define -s -u GS_LIB_DEFAULT -x 2022 $(GS_LIB_DEFAULT) -x 22 $(ECHOGS_XE) -a $(gconfig_h) -x 23 define -s -u SEARCH_HERE_FIRST -s $(SEARCH_HERE_FIRST) $(ECHOGS_XE) -a $(gconfig_h) -x 23 define -s -u GS_DOCDIR -x 2022 $(GS_DOCDIR) -x 22 $(ECHOGS_XE) -a $(gconfig_h) -x 23 define -s -u GS_INIT -x 2022 $(GS_INIT) -x 22 $(ECHOGS_XE) -a $(gconfig_h) -x 23 define -s -u GS_REVISION -s $(GS_REVISION) $(ECHOGS_XE) -a $(gconfig_h) -x 23 define -s -u GS_REVISIONDATE -s $(GS_REVISIONDATE) $(ECHOGS_XE) -a $(gconfig_h) $(GCONFIG_EXTRAS)