diff options
author | Henry Stiles <henry.stiles@artifex.com> | 1998-08-08 05:57:31 +0000 |
---|---|---|
committer | Henry Stiles <henry.stiles@artifex.com> | 1998-08-08 05:57:31 +0000 |
commit | b8cb922d73b866149ca3da2288f1edcf959c45c9 (patch) | |
tree | c1cab95009d6c0aca63dfb810a5e0ff5858fc2e1 /gs/src/dvx-head.mak | |
parent | 049831bbe312e8a7ba47fa1e3b583a21052464de (diff) |
This commit was generated by cvs2svn to compensate for changes in r274,
which included commits to RCS files with non-trunk default branches.
git-svn-id: http://svn.ghostscript.com/ghostpcl/trunk/ghostpcl@275 06663e23-700e-0410-b217-a244a6096597
Diffstat (limited to 'gs/src/dvx-head.mak')
-rw-r--r-- | gs/src/dvx-head.mak | 28 |
1 files changed, 15 insertions, 13 deletions
diff --git a/gs/src/dvx-head.mak b/gs/src/dvx-head.mak index 5c165ef37..c070c8c67 100644 --- a/gs/src/dvx-head.mak +++ b/gs/src/dvx-head.mak @@ -1,4 +1,4 @@ -# Copyright (C) 1994, 1996 Aladdin Enterprises. All rights reserved. +# Copyright (C) 1994, 1996, 1997, 1998 Aladdin Enterprises. All rights reserved. # # This file is part of Aladdin Ghostscript. # @@ -15,10 +15,11 @@ # License requires that the copyright notice and this notice be preserved on # all copies. +# Id: dvx-head.mak # Partial makefile, common to all Desqview/X configurations. # This part of the makefile gets inserted after the compiler-specific part -# (xxx-head.mak) and before gs.mak and devs.mak. +# (xxx-head.mak) and before gs.mak, devs.mak, and contrib.mak. # ----------------------------- Generic stuff ----------------------------- # @@ -29,7 +30,14 @@ PLATFORM=dvx_ # Define the syntax for command, object, and executable files. CMD=.bat -O=-o ./ +I_=-I +II=-I +_I= +# There should be a <space> at the end of the definition of O_, +# but we have to work around the fact that some `make' programs +# drop trailing spaces in macro definitions. +NULL= +O_=-o $(NULL) OBJ=o XE=.exe XEAUX=.exe @@ -50,21 +58,15 @@ RM_=rm -f # Define the arguments for genconf. -CONFILES=-p -pl &-l%%s -ol ld.tr +CONFILES=-p -pl &-l%%s +CONFLDTR=-ol # Define the compilation rules and flags. -CCFLAGS=$(GENOPT) $(CFLAGS) - -.c.o: $(AK) - $(CCC) $*.c - -CCCF=$(CCC) -CCD=$(CCC) -CCINT=$(CCC) +CC_D=$(CC_) +CC_INT=$(CC_) # Patch a couple of PC-specific things that aren't relevant to DV/X builds, # but that cause `make' to produce warnings. -BGIDIR=***UNUSED*** PCFBASM= |