diff options
author | Henry Stiles <henry.stiles@artifex.com> | 1998-12-22 20:14:28 +0000 |
---|---|---|
committer | Henry Stiles <henry.stiles@artifex.com> | 1998-12-22 20:14:28 +0000 |
commit | 01dbb61493a46ac9ce3c32828a06927f487b18e2 (patch) | |
tree | 73944411b4899479928a12674c1c6543095288ef /common/ugcc_top.mak | |
parent | 8182a5b548b957975d0973bdc8e04dfa00bb0d5b (diff) |
Prefixes devices with $(DD) and moves zlib configuration variable
initialization to the to the top level unix makefiles. Someone else
will need to check the other makefile systems. This change requires
that we set ZLIB variable in # PLATFORMS SUPPORTED * 2 (pcl and XL)
places instead of one, but will allow the code to be compiled with
gs5.66.
git-svn-id: http://svn.ghostscript.com/ghostpcl/trunk/ghostpcl@606 06663e23-700e-0410-b217-a244a6096597
Diffstat (limited to 'common/ugcc_top.mak')
-rw-r--r-- | common/ugcc_top.mak | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/common/ugcc_top.mak b/common/ugcc_top.mak index 81cf52234..0c2ce8611 100644 --- a/common/ugcc_top.mak +++ b/common/ugcc_top.mak @@ -40,13 +40,6 @@ clean_gs: GLSRCDIR='$(GLSRCDIR)' GLGENDIR='$(GLGENDIR)' \ GLOBJDIR='$(GLOBJDIR)' clean -# We also specify the location of zlib here since we hardwire the -# banding compresssion method to zlib in the next target. -ZSRCDIR=$(GLSRCDIR)/zlib -ZGENDIR=$(GENDIR) -ZOBJDIR=$(GENDIR) -SHARE_ZLIB=0 - # Build the required GS library files. # It's simplest always to build the floating point emulator, # even though we don't always link it in. @@ -57,7 +50,7 @@ $(GENDIR)/ldl$(CONFIG).tr: $(MAKEFILE) GCFLAGS='$(GCFLAGS)' FPU_TYPE='$(FPU_TYPE)'\ CONFIG='$(CONFIG)' FEATURE_DEVS='$(FEATURE_DEVS)' \ XINCLUDE='$(XINCLUDE)' XLIBDIRS='$(XLIBDIRS)' XLIBDIR='$(XLIBDIR)' XLIBS='$(XLIBS)' \ - DEVICE_DEVS='$(DEVICE_DEVS) bbox.dev' \ + DEVICE_DEVS='$(DEVICE_DEVS) $(DD)bbox.dev' \ BAND_LIST_STORAGE=memory BAND_LIST_COMPRESSOR=zlib \ ZSRCDIR=$(ZSRCDIR) ZGENDIR=$(ZGENDIR) ZOBJDIR=$(ZOBJDIR) ZLIB_NAME=$(ZLIB_NAME) SHARE_ZLIB=$(SHARE_ZLIB) \ GLSRCDIR='$(GLSRCDIR)' \ |