summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKen Sharp <ken.sharp@artifex.com>2015-06-22 09:18:52 +0100
committerKen Sharp <ken.sharp@artifex.com>2015-07-03 09:57:30 +0100
commit0206a569b697e2d372d8ae8522327b740ac0c9ba (patch)
treec3d3895646674a745080026e27bbd8db8db41a98
parent3635cb85852e5981ee488bfa5354571c710d3813 (diff)
downloadghostpdl-0206a569b697e2d372d8ae8522327b740ac0c9ba.tar.gz
move mono palette device into graphics library - amend makefiles
-rw-r--r--gs/base/lib.mak11
-rw-r--r--pcl/pcl.mak9
2 files changed, 9 insertions, 11 deletions
diff --git a/gs/base/lib.mak b/gs/base/lib.mak
index 16c258504..35a24d9e4 100644
--- a/gs/base/lib.mak
+++ b/gs/base/lib.mak
@@ -1317,7 +1317,7 @@ $(GLOBJ)gxdownscale.$(OBJ) : $(GLSRC)gxdownscale.c $(AK) \
LIB0s=$(GLOBJ)gpmisc.$(OBJ) $(GLOBJ)stream.$(OBJ) $(GLOBJ)strmio.$(OBJ)
LIB1s=$(GLOBJ)gsalloc.$(OBJ) $(GLOBJ)gsalpha.$(OBJ) $(GLOBJ)gxdownscale.$(OBJ) $(downscale_) $(GLOBJ)gdevprn.$(OBJ) $(GLOBJ)gdevflp.$(OBJ)
-LIB2s=$(GLOBJ)gsbitcom.$(OBJ) $(GLOBJ)gsbitops.$(OBJ) $(GLOBJ)gsbittab.$(OBJ) $(GLOBJ)gdevoflt.$(OBJ) $(GLOBJ)gdevsclass.$(OBJ)
+LIB2s=$(GLOBJ)gdevmplt.$(OBJ) $(GLOBJ)gsbitcom.$(OBJ) $(GLOBJ)gsbitops.$(OBJ) $(GLOBJ)gsbittab.$(OBJ) $(GLOBJ)gdevoflt.$(OBJ) $(GLOBJ)gdevsclass.$(OBJ)
# Note: gschar.c is no longer required for a standard build;
# we include it only for backward compatibility for library clients.
LIB3s=$(GLOBJ)gscedata.$(OBJ) $(GLOBJ)gscencs.$(OBJ) $(GLOBJ)gschar.$(OBJ) $(GLOBJ)gscolor.$(OBJ)
@@ -1926,12 +1926,14 @@ $(GLOBJ)szlibd.$(OBJ) : $(GLOBJ)szlibd_$(SHARE_ZLIB).$(OBJ) $(MAKEDIRS)
# We include this here, rather than in devs.mak, because it is more like
# a feature than a simple device.
-gdevprn_h=$(GLSRC)gdevprn.h $(gdevflp_h) $(memory__h) $(string__h) $(gp_h) $(gx_h)\
+gdevprn_h=$(GLSRC)gdevprn.h $(gdevflp_h) $(gdevmplt_h) $(memory__h) $(string__h) $(gp_h) $(gx_h)\
$(gserrors_h) $(gsmatrix_h) $(gsparam_h) $(gsutil_h) $(gxclpage_h)\
$(gxclist_h) $(gxdevice_h) $(gxdevmem_h) $(gxrplane_h) $(gxclthrd_h) $(gxflp_h) $(gdevsclass_h)\
$(GLSRC)gdevoflt.h
-page_=$(GLOBJ)gdevprn.$(OBJ) $(GLOBJ)gdevppla.$(OBJ) $(GLOBJ)gdevflp.$(OBJ) $(downscale_) $(GLOBJ)gdevoflt.$(OBJ) $(GLOBJ)gdevsclass.$(OBJ)
+page_=$(GLOBJ)gdevprn.$(OBJ) $(GLOBJ)gdevppla.$(OBJ) $(GLOBJ)gdevmplt.$(OBJ) $(GLOBJ)gdevflp.$(OBJ)\
+ $(downscale_) $(GLOBJ)gdevoflt.$(OBJ) $(GLOBJ)gdevsclass.$(OBJ)
+
$(GLD)page.dev : $(LIB_MAK) $(ECHOGS_XE) $(page_) $(MAKEDIRS)
$(SETMOD) $(GLD)page $(page_)
$(ADDMOD) $(GLD)page -include $(GLD)clist
@@ -1942,6 +1944,9 @@ $(GLOBJ)gdevprn.$(OBJ) : $(GLSRC)gdevprn.c $(ctype__h)\
$(gxdownscale_h) $(gdevdevn_h) $(gxdevsop_h) $(MAKEDIRS)
$(GLCC) $(GLO_)gdevprn.$(OBJ) $(C_) $(GLSRC)gdevprn.c
+$(GLOBJ)gdevmplt.$(OBJ) : $(GLSRC)gdevmplt.c $(gdevmplt_h)$(std_h)
+ $(GLCC) $(GLO_)gdevmplt.$(OBJ) $(C_) $(GLSRC)gdevmplt.c
+
$(GLOBJ)gdevflp.$(OBJ) : $(GLSRC)gdevflp.c $(gdevflp_h)$(std_h)
$(GLCC) $(GLO_)gdevflp.$(OBJ) $(C_) $(GLSRC)gdevflp.c
diff --git a/pcl/pcl.mak b/pcl/pcl.mak
index 2b3c7696f..d698d9441 100644
--- a/pcl/pcl.mak
+++ b/pcl/pcl.mak
@@ -200,8 +200,6 @@ pcpalet_h = $(PCLSRC)pcpalet.h \
$(pcindxed_h) \
$(pcht_h)
-gdevmplt_h = $(PCLSRC)gdevmplt.h
-
pcfrgrnd_h = $(PCLSRC)pcfrgrnd.h \
$(gx_h) \
$(gsstruct_h) \
@@ -528,10 +526,6 @@ $(PCLOBJ)pcpalet.$(OBJ): $(PCLSRC)pcpalet.c \
$(gzstate_h)
$(PCLCCC) $(PCLSRC)pcpalet.c $(PCLO_)pcpalet.$(OBJ)
-$(PCLOBJ)gdevmplt.$(OBJ): $(PCLSRC)gdevmplt.c \
- $(gdevmplt_h)
- $(PCLCCC) $(PCLSRC)gdevmplt.c $(PCLO_)gdevmplt.$(OBJ)
-
$(PCLOBJ)pcpatrn.$(OBJ): $(PCLSRC)pcpatrn.c \
$(gx_h) \
$(gsuid_h) \
@@ -618,8 +612,7 @@ rtlbasec_ = $(PCLOBJ)pcbiptrn.$(OBJ) $(PCLOBJ)pccid.$(OBJ) \
$(PCLOBJ)pcfrgrnd.$(OBJ) $(PCLOBJ)pcht.$(OBJ) \
$(PCLOBJ)pcident.$(OBJ) $(PCLOBJ)pcindxed.$(OBJ) \
$(PCLOBJ)pclookup.$(OBJ) $(PCLOBJ)pcmtx3.$(OBJ) \
- $(PCLOBJ)pcpalet.$(OBJ) $(PCLOBJ)gdevmplt.$(OBJ) \
- $(PCLOBJ)pcpatrn.$(OBJ) \
+ $(PCLOBJ)pcpalet.$(OBJ) $(PCLOBJ)pcpatrn.$(OBJ) \
$(PCLOBJ)pcpatxfm.$(OBJ) $(PCLOBJ)pcuptrn.$(OBJ) \
$(PCLOBJ)pcwhtidx.$(OBJ) $(PCLOBJ)rtgmode.$(OBJ) \
$(PCLOBJ)rtrstcmp.$(OBJ)