diff options
author | Henry Stiles <henry.stiles@artifex.com> | 2005-07-08 17:20:13 +0000 |
---|---|---|
committer | Henry Stiles <henry.stiles@artifex.com> | 2005-07-08 17:20:13 +0000 |
commit | e23098f3a5ac69760af32d26165bd76b2a4c73f1 (patch) | |
tree | 2a523b2b9df4761b190cd02a6f0ac5cc29d751bb /main/pcl6_gcc.mak | |
parent | fb5a42716fd979297fa78b7bdeb77f70f90b8a0c (diff) |
add beginnings of the metro interpreter.
git-svn-id: http://svn.ghostscript.com/ghostpcl/trunk/ghostpcl@2238 06663e23-700e-0410-b217-a244a6096597
Diffstat (limited to 'main/pcl6_gcc.mak')
-rw-r--r-- | main/pcl6_gcc.mak | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/main/pcl6_gcc.mak b/main/pcl6_gcc.mak index 643e6259b..121373c42 100644 --- a/main/pcl6_gcc.mak +++ b/main/pcl6_gcc.mak @@ -12,6 +12,7 @@ GLSRCDIR=../gs/src PCLSRCDIR=../pcl PLSRCDIR=../pl PXLSRCDIR=../pxl +METSRCDIR=../met COMMONDIR=../common MAINSRCDIR=../main @@ -39,18 +40,21 @@ PLGENDIR=$(GENDIR) PLOBJDIR=$(GENDIR) PXLGENDIR=$(GENDIR) PCLGENDIR=$(GENDIR) +METGENDIR=$(GENDIR) PXLOBJDIR=$(GENDIR) PCLOBJDIR=$(GENDIR) +METOBJDIR=$(GENDIR) # Language and configuration. These are actually platform-independent, # but we define them here just to keep all parameters in one place. -TARGET_DEVS=$(PXLOBJDIR)/pxl.dev $(PCLOBJDIR)/pcl5c.dev $(PCLOBJDIR)/hpgl2c.dev +TARGET_DEVS=$(PXLOBJDIR)/pxl.dev $(PCLOBJDIR)/pcl5c.dev $(PCLOBJDIR)/hpgl2c.dev $(METOBJDIR)/met.dev TARGET_XE=$(GENDIR)/pcl6 TARGET_LIB=$(GENDIR)/pcl6.a MAIN_OBJ=$(PLOBJDIR)/plmain.$(OBJ) $(PLOBJDIR)/plimpl.$(OBJ) PCL_TOP_OBJ=$(PCLOBJDIR)/pctop.$(OBJ) PXL_TOP_OBJ=$(PXLOBJDIR)/pxtop.$(OBJ) -TOP_OBJ=$(PCL_TOP_OBJ) $(PXL_TOP_OBJ) +MET_TOP_OBJ=$(METOBJDIR)/mettop.$(OBJ) +TOP_OBJ=$(PCL_TOP_OBJ) $(PXL_TOP_OBJ) $(MET_TOP_OBJ) # note agfa gives it libraries incompatible names so they cannot be # properly found by the linker. Change the library names to reflect the @@ -105,6 +109,9 @@ endif endif +# include the xml parser library +EXTRALIBS+=-lexpat + # a 64 bit type is needed for devicen color space/model support but # carries a performance burden. Use this definition (uncomment) for # devicen support. @@ -170,6 +177,7 @@ include $(COMMONDIR)/ugcc_top.mak include $(PLSRCDIR)/pl.mak include $(PXLSRCDIR)/pxl.mak include $(PCLSRCDIR)/pcl.mak +include $(METSRCDIR)/met.mak # Main program. |