diff options
author | Thomas Deutschmann <whissi@gentoo.org> | 2020-03-19 13:53:45 +0100 |
---|---|---|
committer | Thomas Deutschmann <whissi@gentoo.org> | 2020-08-13 11:28:25 +0200 |
commit | dc2ba49207af71193f1390d84bba4e15aeea0ce0 (patch) | |
tree | 79c2a51cb5fa2b87800b1113e0015a7108cd2eb3 /psi | |
parent | Import Ghostscript 9.50 (diff) | |
download | ghostscript-gpl-patches-dc2ba49207af71193f1390d84bba4e15aeea0ce0.tar.gz ghostscript-gpl-patches-dc2ba49207af71193f1390d84bba4e15aeea0ce0.tar.bz2 ghostscript-gpl-patches-dc2ba49207af71193f1390d84bba4e15aeea0ce0.zip |
Import Ghostscript 9.52ghostscript-9.52
Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
Diffstat (limited to 'psi')
-rw-r--r-- | psi/dscparse.c | 10 | ||||
-rw-r--r-- | psi/dwtext.c | 4 | ||||
-rw-r--r-- | psi/iapi.h | 11 | ||||
-rw-r--r-- | psi/icontext.c | 3 | ||||
-rw-r--r-- | psi/imain.c | 21 | ||||
-rw-r--r-- | psi/imainarg.c | 4 | ||||
-rw-r--r-- | psi/int.mak | 3157 | ||||
-rw-r--r-- | psi/isave.c | 4 | ||||
-rw-r--r-- | psi/msvc.mak | 247 | ||||
-rw-r--r-- | psi/nsisinst.nsi | 27 | ||||
-rw-r--r-- | psi/winint.mak | 2 | ||||
-rw-r--r-- | psi/zbfont.c | 2 | ||||
-rw-r--r-- | psi/zcolor.c | 7 | ||||
-rw-r--r-- | psi/zfile.c | 5 | ||||
-rw-r--r-- | psi/zfilter.c | 8 | ||||
-rw-r--r-- | psi/zfont2.c | 10 | ||||
-rw-r--r-- | psi/zpaint.c | 60 | ||||
-rw-r--r-- | psi/zpcolor.c | 2 | ||||
-rw-r--r-- | psi/ztype.c | 9 | ||||
-rw-r--r-- | psi/zvmem.c | 3 |
20 files changed, 1944 insertions, 1652 deletions
diff --git a/psi/dscparse.c b/psi/dscparse.c index e754a82c..0c34eb14 100644 --- a/psi/dscparse.c +++ b/psi/dscparse.c @@ -3822,7 +3822,7 @@ dsc_dcs2_fixup(CDSC *dsc) DSC_OFFSET *pbegin; DSC_OFFSET *pend; DSC_OFFSET end; - CDCS2 *pdcs = dsc->dcs2; + CDCS2 *pdcs = NULL; /* Now treat the initial EPS file as a single page without * headers or trailer, so page extraction will fetch the * the correct separation. */ @@ -3888,6 +3888,14 @@ dsc_dcs2_fixup(CDSC *dsc) *pbegin = *pend; end = 0; /* end of composite is start of first separation */ + /* we used to do this where the pointer is declared, but Coverity points out + * that dsc_alloc_string can call dsc_reset which can free dsc and dsc->dcs2. + * By deferring the initialisation to here we can ensure we don't have a + * dangling pointer. This makes me suspiciouos that DCS (not DSC!) comments + * have never worked properly. + */ + pdcs = dsc->dcs2; + while (pdcs) { page_number = dsc->page_count; if ((pdcs->begin) && (pdcs->colourname != NULL)) { diff --git a/psi/dwtext.c b/psi/dwtext.c index f236b5bd..f690374d 100644 --- a/psi/dwtext.c +++ b/psi/dwtext.c @@ -914,9 +914,9 @@ WndTextProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) * initializes it here. */ tw = (TW *)(((CREATESTRUCT FAR *)lParam)->lpCreateParams); - SetWindowLong(hwnd, 0, (LONG)tw); + SetWindowLongPtr(hwnd, 0, (LONG_PTR)tw); } - tw = (TW *)GetWindowLong(hwnd, 0); + tw = (TW *)GetWindowLongPtr(hwnd, 0); switch(message) { case WM_SYSCOMMAND: @@ -68,6 +68,11 @@ extern "C" { # define GSDLLEXPORT # endif # endif +# ifdef __MINGW32__ +/* export stdcall functions as "name" instead of "_name@ordinal" */ +# undef GSDLLAPI +# define GSDLLAPI +# endif # ifndef GSDLLAPI # define GSDLLAPI __stdcall # endif @@ -90,7 +95,11 @@ extern "C" { #endif #ifndef GSDLLEXPORT -# define GSDLLEXPORT +# ifdef __GNUC__ +# define GSDLLEXPORT __attribute__ ((visibility ("default"))) +# else +# define GSDLLEXPORT +# endif #endif #ifndef GSDLLAPI # define GSDLLAPI diff --git a/psi/icontext.c b/psi/icontext.c index a48d8d8c..e7ad2bac 100644 --- a/psi/icontext.c +++ b/psi/icontext.c @@ -122,6 +122,8 @@ context_state_alloc(gs_context_state_t ** ppcst, if (pcst == 0) return_error(gs_error_VMerror); } + /* Make sure pcst->memory is valid, in case we return an error. */ + pcst->memory = *dmem; code = gs_interp_alloc_stacks(mem, pcst); if (code < 0) goto x0; @@ -137,7 +139,6 @@ context_state_alloc(gs_context_state_t ** ppcst, code = gs_note_error(gs_error_VMerror); goto x1; } - pcst->memory = *dmem; pcst->language_level = 1; make_false(&pcst->array_packing); make_int(&pcst->binary_object_format, 0); diff --git a/psi/imain.c b/psi/imain.c index 95ef5b6b..db3fd2a1 100644 --- a/psi/imain.c +++ b/psi/imain.c @@ -1126,7 +1126,15 @@ gs_main_finit(gs_main_instance * minst, int exit_status, int code) if (idmemory->reclaim != 0) { code = interp_reclaim(&minst->i_ctx_p, avm_global); - if (code < 0) { + /* We ignore gs_error_VMerror because it comes from gs_vmreclaim() + calling context_state_load(), and we don't seem to depend on the + missing fields. */ + if (code == gs_error_VMerror) { + if (exit_status == 0 || exit_status == gs_error_Quit) { + exit_status = gs_error_VMerror; + } + } + else if (code < 0) { ref error_name; if (tempnames) free(tempnames); @@ -1140,11 +1148,10 @@ gs_main_finit(gs_main_instance * minst, int exit_status, int code) else { emprintf1(imemory, "UNKNOWN ERROR %d reclaiming the memory while the interpreter finalization.\n", code); } -#ifdef MEMENTO_SQUEEZE_BUILD - if (code != gs_error_VMerror ) return gs_error_Fatal; -#else - return gs_error_Fatal; +#ifdef MEMENTO + if (Memento_squeezing() && code != gs_error_VMerror ) return gs_error_Fatal; #endif + return gs_error_Fatal; } i_ctx_p = minst->i_ctx_p; /* interp_reclaim could change it. */ } @@ -1260,6 +1267,10 @@ gs_main_finit(gs_main_instance * minst, int exit_status, int code) set_lib_path_length(minst, 0); gs_free_object(minst->heap, minst->lib_path.container.value.refs, "lib_path array"); + if (minst->init_done == 0 && i_ctx_p) { + /* This fixes leak if memento forces failure in gs_main_init1(). */ + dmem = *idmemory; + } ialloc_finit(&dmem); return exit_status; } diff --git a/psi/imainarg.c b/psi/imainarg.c index 76653f32..c5d74caf 100644 --- a/psi/imainarg.c +++ b/psi/imainarg.c @@ -509,7 +509,9 @@ run_stdin: break; } if (code >= 0) - code = runarg(minst, "]put", psarg, ".runfile", runInit | runFlush, minst->user_errors, NULL, NULL); + code = run_string(minst, "]put", 0, minst->user_errors, NULL, NULL); + if (code >= 0) + code = argproc(minst, psarg); arg_free((char *)psarg, minst->heap); if (code >= 0) code = gs_error_Quit; diff --git a/psi/int.mak b/psi/int.mak index 0161f840..f149452a 100644 --- a/psi/int.mak +++ b/psi/int.mak @@ -358,7 +358,7 @@ $(PSOBJ)zfilter.$(OBJ) : $(PSSRC)zfilter.c $(OP) $(memory__h)\ $(files_h) $(ialloc_h) $(idict_h) $(idparam_h) $(ifilter_h) $(ilevel_h)\ $(sfilter_h) $(srlx_h) $(sstring_h) $(stream_h) $(strimpl_h)\ $(INT_MAK) $(MAKEDIRS) - $(PSCC) $(PSO_)zfilter.$(OBJ) $(C_) $(PSSRC)zfilter.c + $(PSCC) $(ENABLE_URF) $(URF_INCLUDE) $(PSO_)zfilter.$(OBJ) $(C_) $(PSSRC)zfilter.c $(PSOBJ)zfproc.$(OBJ) : $(PSSRC)zfproc.c $(GH) $(memory__h) $(stat__h)\ $(oper_h)\ @@ -525,7 +525,7 @@ $(PSOBJ)zmatrix.$(OBJ) : $(PSSRC)zmatrix.c $(OP)\ $(PSCC) $(PSO_)zmatrix.$(OBJ) $(C_) $(PSSRC)zmatrix.c $(PSOBJ)zpaint.$(OBJ) : $(PSSRC)zpaint.c $(OP)\ - $(gspaint_h) $(igstate_h) $(INT_MAK) $(MAKEDIRS) + $(gspaint_h) $(igstate_h) $(store_h) $(estack_h) $(INT_MAK) $(MAKEDIRS) $(PSCC) $(PSO_)zpaint.$(OBJ) $(C_) $(PSSRC)zpaint.c $(PSOBJ)zpath.$(OBJ) : $(PSSRC)zpath.c $(OP) $(math__h)\ @@ -1947,185 +1947,186 @@ $(PSOBJ)ireclaim.$(OBJ) : $(PSSRC)ireclaim.c $(GH)\ # Dependencies: $(PSSRC)ierrors.h:$(GLSRC)gserrors.h $(PSSRC)iconf.h:$(GLSRC)gxiodev.h -$(PSSRC)iconf.h:$(GLSRC)stat_.h +$(PSSRC)iconf.h:$(GLSRC)gsparam.h $(PSSRC)iconf.h:$(GLSRC)gp.h $(PSSRC)iconf.h:$(GLSRC)srdline.h $(PSSRC)iconf.h:$(GLSRC)scommon.h $(PSSRC)iconf.h:$(GLSRC)gsfname.h $(PSSRC)iconf.h:$(GLSRC)gsstype.h +$(PSSRC)iconf.h:$(GLSRC)stat_.h $(PSSRC)iconf.h:$(GLSRC)gsmemory.h -$(PSSRC)iconf.h:$(GLSRC)gpgetenv.h $(PSSRC)iconf.h:$(GLSRC)memory_.h +$(PSSRC)iconf.h:$(GLSRC)gpgetenv.h $(PSSRC)iconf.h:$(GLSRC)gslibctx.h $(PSSRC)iconf.h:$(GLSRC)gscdefs.h -$(PSSRC)iconf.h:$(GLSRC)stdint_.h $(PSSRC)iconf.h:$(GLSRC)gs_dll_call.h $(PSSRC)iconf.h:$(GLSRC)stdio_.h -$(PSSRC)iconf.h:$(GLSRC)gstypes.h +$(PSSRC)iconf.h:$(GLSRC)stdint_.h +$(PSSRC)iconf.h:$(GLSRC)gssprintf.h $(PSSRC)iconf.h:$(GLSRC)std.h +$(PSSRC)iconf.h:$(GLSRC)gstypes.h $(PSSRC)iconf.h:$(GLSRC)stdpre.h $(PSSRC)iconf.h:$(GLGEN)arch.h -$(PSSRC)iconf.h:$(GLSRC)gssprintf.h $(PSSRC)idebug.h:$(PSSRC)iref.h $(PSSRC)idebug.h:$(GLSRC)gxalloc.h $(PSSRC)idebug.h:$(GLSRC)gxobj.h $(PSSRC)idebug.h:$(GLSRC)gsnamecl.h $(PSSRC)idebug.h:$(GLSRC)gxcspace.h -$(PSSRC)idebug.h:$(GLSRC)gxfrac.h $(PSSRC)idebug.h:$(GLSRC)gsdcolor.h +$(PSSRC)idebug.h:$(GLSRC)gxfrac.h $(PSSRC)idebug.h:$(GLSRC)gscms.h -$(PSSRC)idebug.h:$(GLSRC)gsdevice.h $(PSSRC)idebug.h:$(GLSRC)gscspace.h +$(PSSRC)idebug.h:$(GLSRC)gsdevice.h $(PSSRC)idebug.h:$(GLSRC)gxarith.h -$(PSSRC)idebug.h:$(GLSRC)gsrefct.h -$(PSSRC)idebug.h:$(GLSRC)gsiparam.h $(PSSRC)idebug.h:$(GLSRC)gxhttile.h -$(PSSRC)idebug.h:$(GLSRC)memento.h -$(PSSRC)idebug.h:$(GLSRC)gsparam.h -$(PSSRC)idebug.h:$(GLSRC)gsmatrix.h +$(PSSRC)idebug.h:$(GLSRC)gsiparam.h $(PSSRC)idebug.h:$(GLSRC)gxbitmap.h +$(PSSRC)idebug.h:$(GLSRC)gsmatrix.h +$(PSSRC)idebug.h:$(GLSRC)gsrefct.h +$(PSSRC)idebug.h:$(GLSRC)gsparam.h +$(PSSRC)idebug.h:$(GLSRC)gsccolor.h $(PSSRC)idebug.h:$(GLSRC)gsstruct.h $(PSSRC)idebug.h:$(GLSRC)gxsync.h -$(PSSRC)idebug.h:$(GLSRC)gscsel.h $(PSSRC)idebug.h:$(GLSRC)scommon.h +$(PSSRC)idebug.h:$(GLSRC)memento.h +$(PSSRC)idebug.h:$(GLSRC)gscsel.h $(PSSRC)idebug.h:$(GLSRC)gsbitmap.h -$(PSSRC)idebug.h:$(GLSRC)gsccolor.h $(PSSRC)idebug.h:$(GLSRC)gsstype.h $(PSSRC)idebug.h:$(GLSRC)gsmemory.h $(PSSRC)idebug.h:$(GLSRC)gpsync.h $(PSSRC)idebug.h:$(GLSRC)gslibctx.h +$(PSSRC)idebug.h:$(GLSRC)gs_dll_call.h $(PSSRC)idebug.h:$(GLSRC)gsalloc.h +$(PSSRC)idebug.h:$(GLSRC)stdio_.h $(PSSRC)idebug.h:$(GLSRC)gxcindex.h -$(PSSRC)idebug.h:$(GLSRC)stdint_.h $(PSSRC)idebug.h:$(GLSRC)gsgstate.h -$(PSSRC)idebug.h:$(GLSRC)gs_dll_call.h -$(PSSRC)idebug.h:$(GLSRC)stdio_.h -$(PSSRC)idebug.h:$(GLSRC)gstypes.h +$(PSSRC)idebug.h:$(GLSRC)stdint_.h +$(PSSRC)idebug.h:$(GLSRC)gssprintf.h $(PSSRC)idebug.h:$(GLSRC)std.h +$(PSSRC)idebug.h:$(GLSRC)gstypes.h $(PSSRC)idebug.h:$(GLSRC)stdpre.h $(PSSRC)idebug.h:$(GLGEN)arch.h -$(PSSRC)idebug.h:$(GLSRC)gssprintf.h $(PSSRC)iddstack.h:$(PSSRC)iref.h $(PSSRC)iddstack.h:$(GLSRC)gxalloc.h $(PSSRC)iddstack.h:$(GLSRC)gxobj.h $(PSSRC)iddstack.h:$(GLSRC)gsnamecl.h $(PSSRC)iddstack.h:$(GLSRC)gxcspace.h -$(PSSRC)iddstack.h:$(GLSRC)gxfrac.h $(PSSRC)iddstack.h:$(GLSRC)gsdcolor.h +$(PSSRC)iddstack.h:$(GLSRC)gxfrac.h $(PSSRC)iddstack.h:$(GLSRC)gscms.h -$(PSSRC)iddstack.h:$(GLSRC)gsdevice.h $(PSSRC)iddstack.h:$(GLSRC)gscspace.h +$(PSSRC)iddstack.h:$(GLSRC)gsdevice.h $(PSSRC)iddstack.h:$(GLSRC)gxarith.h -$(PSSRC)iddstack.h:$(GLSRC)gsrefct.h -$(PSSRC)iddstack.h:$(GLSRC)gsiparam.h $(PSSRC)iddstack.h:$(GLSRC)gxhttile.h -$(PSSRC)iddstack.h:$(GLSRC)memento.h -$(PSSRC)iddstack.h:$(GLSRC)gsparam.h -$(PSSRC)iddstack.h:$(GLSRC)gsmatrix.h +$(PSSRC)iddstack.h:$(GLSRC)gsiparam.h $(PSSRC)iddstack.h:$(GLSRC)gxbitmap.h +$(PSSRC)iddstack.h:$(GLSRC)gsmatrix.h +$(PSSRC)iddstack.h:$(GLSRC)gsrefct.h +$(PSSRC)iddstack.h:$(GLSRC)gsparam.h +$(PSSRC)iddstack.h:$(GLSRC)gsccolor.h $(PSSRC)iddstack.h:$(GLSRC)gsstruct.h $(PSSRC)iddstack.h:$(GLSRC)gxsync.h -$(PSSRC)iddstack.h:$(GLSRC)gscsel.h $(PSSRC)iddstack.h:$(GLSRC)scommon.h +$(PSSRC)iddstack.h:$(GLSRC)memento.h +$(PSSRC)iddstack.h:$(GLSRC)gscsel.h $(PSSRC)iddstack.h:$(GLSRC)gsbitmap.h -$(PSSRC)iddstack.h:$(GLSRC)gsccolor.h $(PSSRC)iddstack.h:$(GLSRC)gsstype.h $(PSSRC)iddstack.h:$(GLSRC)gsmemory.h $(PSSRC)iddstack.h:$(GLSRC)gpsync.h $(PSSRC)iddstack.h:$(GLSRC)gslibctx.h +$(PSSRC)iddstack.h:$(GLSRC)gs_dll_call.h $(PSSRC)iddstack.h:$(GLSRC)gsalloc.h +$(PSSRC)iddstack.h:$(GLSRC)stdio_.h $(PSSRC)iddstack.h:$(GLSRC)gxcindex.h -$(PSSRC)iddstack.h:$(GLSRC)stdint_.h $(PSSRC)iddstack.h:$(GLSRC)gsgstate.h -$(PSSRC)iddstack.h:$(GLSRC)gs_dll_call.h -$(PSSRC)iddstack.h:$(GLSRC)stdio_.h -$(PSSRC)iddstack.h:$(GLSRC)gstypes.h +$(PSSRC)iddstack.h:$(GLSRC)stdint_.h +$(PSSRC)iddstack.h:$(GLSRC)gssprintf.h $(PSSRC)iddstack.h:$(GLSRC)std.h +$(PSSRC)iddstack.h:$(GLSRC)gstypes.h $(PSSRC)iddstack.h:$(GLSRC)stdpre.h $(PSSRC)iddstack.h:$(GLGEN)arch.h -$(PSSRC)iddstack.h:$(GLSRC)gssprintf.h $(PSSRC)idict.h:$(PSSRC)iddstack.h $(PSSRC)idict.h:$(PSSRC)iref.h $(PSSRC)idict.h:$(GLSRC)gxalloc.h $(PSSRC)idict.h:$(GLSRC)gxobj.h $(PSSRC)idict.h:$(GLSRC)gsnamecl.h $(PSSRC)idict.h:$(GLSRC)gxcspace.h -$(PSSRC)idict.h:$(GLSRC)gxfrac.h $(PSSRC)idict.h:$(GLSRC)gsdcolor.h +$(PSSRC)idict.h:$(GLSRC)gxfrac.h $(PSSRC)idict.h:$(GLSRC)gscms.h -$(PSSRC)idict.h:$(GLSRC)gsdevice.h $(PSSRC)idict.h:$(GLSRC)gscspace.h +$(PSSRC)idict.h:$(GLSRC)gsdevice.h $(PSSRC)idict.h:$(GLSRC)gxarith.h -$(PSSRC)idict.h:$(GLSRC)gsrefct.h -$(PSSRC)idict.h:$(GLSRC)gsiparam.h $(PSSRC)idict.h:$(GLSRC)gxhttile.h -$(PSSRC)idict.h:$(GLSRC)memento.h -$(PSSRC)idict.h:$(GLSRC)gsparam.h -$(PSSRC)idict.h:$(GLSRC)gsmatrix.h +$(PSSRC)idict.h:$(GLSRC)gsiparam.h $(PSSRC)idict.h:$(GLSRC)gxbitmap.h +$(PSSRC)idict.h:$(GLSRC)gsmatrix.h +$(PSSRC)idict.h:$(GLSRC)gsrefct.h +$(PSSRC)idict.h:$(GLSRC)gsparam.h +$(PSSRC)idict.h:$(GLSRC)gsccolor.h $(PSSRC)idict.h:$(GLSRC)gsstruct.h $(PSSRC)idict.h:$(GLSRC)gxsync.h -$(PSSRC)idict.h:$(GLSRC)gscsel.h $(PSSRC)idict.h:$(GLSRC)scommon.h +$(PSSRC)idict.h:$(GLSRC)memento.h +$(PSSRC)idict.h:$(GLSRC)gscsel.h $(PSSRC)idict.h:$(GLSRC)gsbitmap.h -$(PSSRC)idict.h:$(GLSRC)gsccolor.h $(PSSRC)idict.h:$(GLSRC)gsstype.h $(PSSRC)idict.h:$(GLSRC)gsmemory.h $(PSSRC)idict.h:$(GLSRC)gpsync.h $(PSSRC)idict.h:$(GLSRC)gslibctx.h +$(PSSRC)idict.h:$(GLSRC)gs_dll_call.h $(PSSRC)idict.h:$(GLSRC)gsalloc.h +$(PSSRC)idict.h:$(GLSRC)stdio_.h $(PSSRC)idict.h:$(GLSRC)gxcindex.h -$(PSSRC)idict.h:$(GLSRC)stdint_.h $(PSSRC)idict.h:$(GLSRC)gsgstate.h -$(PSSRC)idict.h:$(GLSRC)gs_dll_call.h -$(PSSRC)idict.h:$(GLSRC)stdio_.h -$(PSSRC)idict.h:$(GLSRC)gstypes.h +$(PSSRC)idict.h:$(GLSRC)stdint_.h +$(PSSRC)idict.h:$(GLSRC)gssprintf.h $(PSSRC)idict.h:$(GLSRC)std.h +$(PSSRC)idict.h:$(GLSRC)gstypes.h $(PSSRC)idict.h:$(GLSRC)stdpre.h $(PSSRC)idict.h:$(GLGEN)arch.h -$(PSSRC)idict.h:$(GLSRC)gssprintf.h $(PSSRC)idosave.h:$(PSSRC)imemory.h $(PSSRC)idosave.h:$(PSSRC)ivmspace.h $(PSSRC)idosave.h:$(PSSRC)iref.h -$(PSSRC)idosave.h:$(GLSRC)gxalloc.h $(PSSRC)idosave.h:$(GLSRC)gsgc.h +$(PSSRC)idosave.h:$(GLSRC)gxalloc.h $(PSSRC)idosave.h:$(GLSRC)gxobj.h $(PSSRC)idosave.h:$(GLSRC)gsnamecl.h $(PSSRC)idosave.h:$(GLSRC)gxcspace.h -$(PSSRC)idosave.h:$(GLSRC)gxfrac.h $(PSSRC)idosave.h:$(GLSRC)gsdcolor.h +$(PSSRC)idosave.h:$(GLSRC)gxfrac.h $(PSSRC)idosave.h:$(GLSRC)gscms.h -$(PSSRC)idosave.h:$(GLSRC)gsdevice.h $(PSSRC)idosave.h:$(GLSRC)gscspace.h +$(PSSRC)idosave.h:$(GLSRC)gsdevice.h $(PSSRC)idosave.h:$(GLSRC)gxarith.h -$(PSSRC)idosave.h:$(GLSRC)gsrefct.h -$(PSSRC)idosave.h:$(GLSRC)gsiparam.h $(PSSRC)idosave.h:$(GLSRC)gxhttile.h -$(PSSRC)idosave.h:$(GLSRC)memento.h -$(PSSRC)idosave.h:$(GLSRC)gsparam.h -$(PSSRC)idosave.h:$(GLSRC)gsmatrix.h +$(PSSRC)idosave.h:$(GLSRC)gsiparam.h $(PSSRC)idosave.h:$(GLSRC)gxbitmap.h +$(PSSRC)idosave.h:$(GLSRC)gsmatrix.h +$(PSSRC)idosave.h:$(GLSRC)gsrefct.h +$(PSSRC)idosave.h:$(GLSRC)gsparam.h +$(PSSRC)idosave.h:$(GLSRC)gsccolor.h $(PSSRC)idosave.h:$(GLSRC)gsstruct.h $(PSSRC)idosave.h:$(GLSRC)gxsync.h -$(PSSRC)idosave.h:$(GLSRC)gscsel.h $(PSSRC)idosave.h:$(GLSRC)scommon.h +$(PSSRC)idosave.h:$(GLSRC)memento.h +$(PSSRC)idosave.h:$(GLSRC)gscsel.h $(PSSRC)idosave.h:$(GLSRC)gsbitmap.h -$(PSSRC)idosave.h:$(GLSRC)gsccolor.h $(PSSRC)idosave.h:$(GLSRC)gsstype.h $(PSSRC)idosave.h:$(GLSRC)gsmemory.h $(PSSRC)idosave.h:$(GLSRC)gpsync.h $(PSSRC)idosave.h:$(GLSRC)gslibctx.h +$(PSSRC)idosave.h:$(GLSRC)gs_dll_call.h $(PSSRC)idosave.h:$(GLSRC)gsalloc.h +$(PSSRC)idosave.h:$(GLSRC)stdio_.h $(PSSRC)idosave.h:$(GLSRC)gxcindex.h -$(PSSRC)idosave.h:$(GLSRC)stdint_.h $(PSSRC)idosave.h:$(GLSRC)gsgstate.h -$(PSSRC)idosave.h:$(GLSRC)gs_dll_call.h -$(PSSRC)idosave.h:$(GLSRC)stdio_.h -$(PSSRC)idosave.h:$(GLSRC)gstypes.h +$(PSSRC)idosave.h:$(GLSRC)stdint_.h +$(PSSRC)idosave.h:$(GLSRC)gssprintf.h $(PSSRC)idosave.h:$(GLSRC)std.h +$(PSSRC)idosave.h:$(GLSRC)gstypes.h $(PSSRC)idosave.h:$(GLSRC)stdpre.h $(PSSRC)idosave.h:$(GLGEN)arch.h -$(PSSRC)idosave.h:$(GLSRC)gssprintf.h $(PSSRC)igcstr.h:$(GLSRC)gxalloc.h $(PSSRC)igcstr.h:$(GLSRC)gxobj.h $(PSSRC)igcstr.h:$(GLSRC)gxbitmap.h @@ -2135,185 +2136,185 @@ $(PSSRC)igcstr.h:$(GLSRC)gsbitmap.h $(PSSRC)igcstr.h:$(GLSRC)gsstype.h $(PSSRC)igcstr.h:$(GLSRC)gsmemory.h $(PSSRC)igcstr.h:$(GLSRC)gslibctx.h -$(PSSRC)igcstr.h:$(GLSRC)gsalloc.h -$(PSSRC)igcstr.h:$(GLSRC)stdint_.h $(PSSRC)igcstr.h:$(GLSRC)gs_dll_call.h +$(PSSRC)igcstr.h:$(GLSRC)gsalloc.h $(PSSRC)igcstr.h:$(GLSRC)stdio_.h -$(PSSRC)igcstr.h:$(GLSRC)gstypes.h +$(PSSRC)igcstr.h:$(GLSRC)stdint_.h +$(PSSRC)igcstr.h:$(GLSRC)gssprintf.h $(PSSRC)igcstr.h:$(GLSRC)std.h +$(PSSRC)igcstr.h:$(GLSRC)gstypes.h $(PSSRC)igcstr.h:$(GLSRC)stdpre.h $(PSSRC)igcstr.h:$(GLGEN)arch.h -$(PSSRC)igcstr.h:$(GLSRC)gssprintf.h $(PSSRC)inames.h:$(PSSRC)imemory.h $(PSSRC)inames.h:$(PSSRC)ivmspace.h $(PSSRC)inames.h:$(PSSRC)iref.h -$(PSSRC)inames.h:$(GLSRC)gxalloc.h $(PSSRC)inames.h:$(GLSRC)gsgc.h +$(PSSRC)inames.h:$(GLSRC)gxalloc.h $(PSSRC)inames.h:$(GLSRC)gxobj.h $(PSSRC)inames.h:$(GLSRC)gsnamecl.h $(PSSRC)inames.h:$(GLSRC)gxcspace.h -$(PSSRC)inames.h:$(GLSRC)gxfrac.h $(PSSRC)inames.h:$(GLSRC)gsdcolor.h +$(PSSRC)inames.h:$(GLSRC)gxfrac.h $(PSSRC)inames.h:$(GLSRC)gscms.h -$(PSSRC)inames.h:$(GLSRC)gsdevice.h $(PSSRC)inames.h:$(GLSRC)gscspace.h +$(PSSRC)inames.h:$(GLSRC)gsdevice.h $(PSSRC)inames.h:$(GLSRC)gxarith.h -$(PSSRC)inames.h:$(GLSRC)gsrefct.h -$(PSSRC)inames.h:$(GLSRC)gsiparam.h $(PSSRC)inames.h:$(GLSRC)gxhttile.h -$(PSSRC)inames.h:$(GLSRC)memento.h -$(PSSRC)inames.h:$(GLSRC)gsparam.h -$(PSSRC)inames.h:$(GLSRC)gsmatrix.h +$(PSSRC)inames.h:$(GLSRC)gsiparam.h $(PSSRC)inames.h:$(GLSRC)gxbitmap.h +$(PSSRC)inames.h:$(GLSRC)gsmatrix.h +$(PSSRC)inames.h:$(GLSRC)gsrefct.h +$(PSSRC)inames.h:$(GLSRC)gsparam.h +$(PSSRC)inames.h:$(GLSRC)gsccolor.h $(PSSRC)inames.h:$(GLSRC)gsstruct.h $(PSSRC)inames.h:$(GLSRC)gxsync.h -$(PSSRC)inames.h:$(GLSRC)gscsel.h $(PSSRC)inames.h:$(GLSRC)scommon.h +$(PSSRC)inames.h:$(GLSRC)memento.h +$(PSSRC)inames.h:$(GLSRC)gscsel.h $(PSSRC)inames.h:$(GLSRC)gsbitmap.h -$(PSSRC)inames.h:$(GLSRC)gsccolor.h $(PSSRC)inames.h:$(GLSRC)gsstype.h $(PSSRC)inames.h:$(GLSRC)gsmemory.h $(PSSRC)inames.h:$(GLSRC)gpsync.h $(PSSRC)inames.h:$(GLSRC)gslibctx.h +$(PSSRC)inames.h:$(GLSRC)gs_dll_call.h $(PSSRC)inames.h:$(GLSRC)gsalloc.h +$(PSSRC)inames.h:$(GLSRC)stdio_.h $(PSSRC)inames.h:$(GLSRC)gxcindex.h -$(PSSRC)inames.h:$(GLSRC)stdint_.h $(PSSRC)inames.h:$(GLSRC)gsgstate.h -$(PSSRC)inames.h:$(GLSRC)gs_dll_call.h -$(PSSRC)inames.h:$(GLSRC)stdio_.h -$(PSSRC)inames.h:$(GLSRC)gstypes.h +$(PSSRC)inames.h:$(GLSRC)stdint_.h +$(PSSRC)inames.h:$(GLSRC)gssprintf.h $(PSSRC)inames.h:$(GLSRC)std.h +$(PSSRC)inames.h:$(GLSRC)gstypes.h $(PSSRC)inames.h:$(GLSRC)stdpre.h $(PSSRC)inames.h:$(GLGEN)arch.h -$(PSSRC)inames.h:$(GLSRC)gssprintf.h $(PSSRC)iname.h:$(PSSRC)inames.h $(PSSRC)iname.h:$(PSSRC)imemory.h $(PSSRC)iname.h:$(PSSRC)ivmspace.h $(PSSRC)iname.h:$(PSSRC)iref.h -$(PSSRC)iname.h:$(GLSRC)gxalloc.h $(PSSRC)iname.h:$(GLSRC)gsgc.h +$(PSSRC)iname.h:$(GLSRC)gxalloc.h $(PSSRC)iname.h:$(GLSRC)gxobj.h $(PSSRC)iname.h:$(GLSRC)gsnamecl.h $(PSSRC)iname.h:$(GLSRC)gxcspace.h -$(PSSRC)iname.h:$(GLSRC)gxfrac.h $(PSSRC)iname.h:$(GLSRC)gsdcolor.h +$(PSSRC)iname.h:$(GLSRC)gxfrac.h $(PSSRC)iname.h:$(GLSRC)gscms.h -$(PSSRC)iname.h:$(GLSRC)gsdevice.h $(PSSRC)iname.h:$(GLSRC)gscspace.h +$(PSSRC)iname.h:$(GLSRC)gsdevice.h $(PSSRC)iname.h:$(GLSRC)gxarith.h -$(PSSRC)iname.h:$(GLSRC)gsrefct.h -$(PSSRC)iname.h:$(GLSRC)gsiparam.h $(PSSRC)iname.h:$(GLSRC)gxhttile.h -$(PSSRC)iname.h:$(GLSRC)memento.h -$(PSSRC)iname.h:$(GLSRC)gsparam.h -$(PSSRC)iname.h:$(GLSRC)gsmatrix.h +$(PSSRC)iname.h:$(GLSRC)gsiparam.h $(PSSRC)iname.h:$(GLSRC)gxbitmap.h +$(PSSRC)iname.h:$(GLSRC)gsmatrix.h +$(PSSRC)iname.h:$(GLSRC)gsrefct.h +$(PSSRC)iname.h:$(GLSRC)gsparam.h +$(PSSRC)iname.h:$(GLSRC)gsccolor.h $(PSSRC)iname.h:$(GLSRC)gsstruct.h $(PSSRC)iname.h:$(GLSRC)gxsync.h -$(PSSRC)iname.h:$(GLSRC)gscsel.h $(PSSRC)iname.h:$(GLSRC)scommon.h +$(PSSRC)iname.h:$(GLSRC)memento.h +$(PSSRC)iname.h:$(GLSRC)gscsel.h $(PSSRC)iname.h:$(GLSRC)gsbitmap.h -$(PSSRC)iname.h:$(GLSRC)gsccolor.h $(PSSRC)iname.h:$(GLSRC)gsstype.h $(PSSRC)iname.h:$(GLSRC)gsmemory.h $(PSSRC)iname.h:$(GLSRC)gpsync.h $(PSSRC)iname.h:$(GLSRC)gslibctx.h +$(PSSRC)iname.h:$(GLSRC)gs_dll_call.h $(PSSRC)iname.h:$(GLSRC)gsalloc.h +$(PSSRC)iname.h:$(GLSRC)stdio_.h $(PSSRC)iname.h:$(GLSRC)gxcindex.h -$(PSSRC)iname.h:$(GLSRC)stdint_.h $(PSSRC)iname.h:$(GLSRC)gsgstate.h -$(PSSRC)iname.h:$(GLSRC)gs_dll_call.h -$(PSSRC)iname.h:$(GLSRC)stdio_.h -$(PSSRC)iname.h:$(GLSRC)gstypes.h +$(PSSRC)iname.h:$(GLSRC)stdint_.h +$(PSSRC)iname.h:$(GLSRC)gssprintf.h $(PSSRC)iname.h:$(GLSRC)std.h +$(PSSRC)iname.h:$(GLSRC)gstypes.h $(PSSRC)iname.h:$(GLSRC)stdpre.h $(PSSRC)iname.h:$(GLGEN)arch.h -$(PSSRC)iname.h:$(GLSRC)gssprintf.h $(PSSRC)inamestr.h:$(PSSRC)inameidx.h $(PSSRC)inamestr.h:$(GLSRC)stdpre.h $(PSSRC)iref.h:$(GLSRC)gxalloc.h $(PSSRC)iref.h:$(GLSRC)gxobj.h $(PSSRC)iref.h:$(GLSRC)gsnamecl.h $(PSSRC)iref.h:$(GLSRC)gxcspace.h -$(PSSRC)iref.h:$(GLSRC)gxfrac.h $(PSSRC)iref.h:$(GLSRC)gsdcolor.h +$(PSSRC)iref.h:$(GLSRC)gxfrac.h $(PSSRC)iref.h:$(GLSRC)gscms.h -$(PSSRC)iref.h:$(GLSRC)gsdevice.h $(PSSRC)iref.h:$(GLSRC)gscspace.h +$(PSSRC)iref.h:$(GLSRC)gsdevice.h $(PSSRC)iref.h:$(GLSRC)gxarith.h -$(PSSRC)iref.h:$(GLSRC)gsrefct.h -$(PSSRC)iref.h:$(GLSRC)gsiparam.h $(PSSRC)iref.h:$(GLSRC)gxhttile.h -$(PSSRC)iref.h:$(GLSRC)memento.h -$(PSSRC)iref.h:$(GLSRC)gsparam.h -$(PSSRC)iref.h:$(GLSRC)gsmatrix.h +$(PSSRC)iref.h:$(GLSRC)gsiparam.h $(PSSRC)iref.h:$(GLSRC)gxbitmap.h +$(PSSRC)iref.h:$(GLSRC)gsmatrix.h +$(PSSRC)iref.h:$(GLSRC)gsrefct.h +$(PSSRC)iref.h:$(GLSRC)gsparam.h +$(PSSRC)iref.h:$(GLSRC)gsccolor.h $(PSSRC)iref.h:$(GLSRC)gsstruct.h $(PSSRC)iref.h:$(GLSRC)gxsync.h -$(PSSRC)iref.h:$(GLSRC)gscsel.h $(PSSRC)iref.h:$(GLSRC)scommon.h +$(PSSRC)iref.h:$(GLSRC)memento.h +$(PSSRC)iref.h:$(GLSRC)gscsel.h $(PSSRC)iref.h:$(GLSRC)gsbitmap.h -$(PSSRC)iref.h:$(GLSRC)gsccolor.h $(PSSRC)iref.h:$(GLSRC)gsstype.h $(PSSRC)iref.h:$(GLSRC)gsmemory.h $(PSSRC)iref.h:$(GLSRC)gpsync.h $(PSSRC)iref.h:$(GLSRC)gslibctx.h +$(PSSRC)iref.h:$(GLSRC)gs_dll_call.h $(PSSRC)iref.h:$(GLSRC)gsalloc.h +$(PSSRC)iref.h:$(GLSRC)stdio_.h $(PSSRC)iref.h:$(GLSRC)gxcindex.h -$(PSSRC)iref.h:$(GLSRC)stdint_.h $(PSSRC)iref.h:$(GLSRC)gsgstate.h -$(PSSRC)iref.h:$(GLSRC)gs_dll_call.h -$(PSSRC)iref.h:$(GLSRC)stdio_.h -$(PSSRC)iref.h:$(GLSRC)gstypes.h +$(PSSRC)iref.h:$(GLSRC)stdint_.h +$(PSSRC)iref.h:$(GLSRC)gssprintf.h $(PSSRC)iref.h:$(GLSRC)std.h +$(PSSRC)iref.h:$(GLSRC)gstypes.h $(PSSRC)iref.h:$(GLSRC)stdpre.h $(PSSRC)iref.h:$(GLGEN)arch.h -$(PSSRC)iref.h:$(GLSRC)gssprintf.h $(PSSRC)isave.h:$(PSSRC)idosave.h $(PSSRC)isave.h:$(PSSRC)imemory.h $(PSSRC)isave.h:$(PSSRC)ivmspace.h $(PSSRC)isave.h:$(PSSRC)iref.h -$(PSSRC)isave.h:$(GLSRC)gxalloc.h $(PSSRC)isave.h:$(GLSRC)gsgc.h +$(PSSRC)isave.h:$(GLSRC)gxalloc.h $(PSSRC)isave.h:$(GLSRC)gxobj.h $(PSSRC)isave.h:$(GLSRC)gsnamecl.h $(PSSRC)isave.h:$(GLSRC)gxcspace.h -$(PSSRC)isave.h:$(GLSRC)gxfrac.h $(PSSRC)isave.h:$(GLSRC)gsdcolor.h +$(PSSRC)isave.h:$(GLSRC)gxfrac.h $(PSSRC)isave.h:$(GLSRC)gscms.h -$(PSSRC)isave.h:$(GLSRC)gsdevice.h $(PSSRC)isave.h:$(GLSRC)gscspace.h +$(PSSRC)isave.h:$(GLSRC)gsdevice.h $(PSSRC)isave.h:$(GLSRC)gxarith.h -$(PSSRC)isave.h:$(GLSRC)gsrefct.h -$(PSSRC)isave.h:$(GLSRC)gsiparam.h $(PSSRC)isave.h:$(GLSRC)gxhttile.h -$(PSSRC)isave.h:$(GLSRC)memento.h -$(PSSRC)isave.h:$(GLSRC)gsparam.h -$(PSSRC)isave.h:$(GLSRC)gsmatrix.h +$(PSSRC)isave.h:$(GLSRC)gsiparam.h $(PSSRC)isave.h:$(GLSRC)gxbitmap.h +$(PSSRC)isave.h:$(GLSRC)gsmatrix.h +$(PSSRC)isave.h:$(GLSRC)gsrefct.h +$(PSSRC)isave.h:$(GLSRC)gsparam.h +$(PSSRC)isave.h:$(GLSRC)gsccolor.h $(PSSRC)isave.h:$(GLSRC)gsstruct.h $(PSSRC)isave.h:$(GLSRC)gxsync.h -$(PSSRC)isave.h:$(GLSRC)gscsel.h $(PSSRC)isave.h:$(GLSRC)scommon.h +$(PSSRC)isave.h:$(GLSRC)memento.h +$(PSSRC)isave.h:$(GLSRC)gscsel.h $(PSSRC)isave.h:$(GLSRC)gsbitmap.h -$(PSSRC)isave.h:$(GLSRC)gsccolor.h $(PSSRC)isave.h:$(GLSRC)gsstype.h $(PSSRC)isave.h:$(GLSRC)gsmemory.h $(PSSRC)isave.h:$(GLSRC)gpsync.h $(PSSRC)isave.h:$(GLSRC)gslibctx.h +$(PSSRC)isave.h:$(GLSRC)gs_dll_call.h $(PSSRC)isave.h:$(GLSRC)gsalloc.h +$(PSSRC)isave.h:$(GLSRC)stdio_.h $(PSSRC)isave.h:$(GLSRC)gxcindex.h -$(PSSRC)isave.h:$(GLSRC)stdint_.h $(PSSRC)isave.h:$(GLSRC)gsgstate.h -$(PSSRC)isave.h:$(GLSRC)gs_dll_call.h -$(PSSRC)isave.h:$(GLSRC)stdio_.h -$(PSSRC)isave.h:$(GLSRC)gstypes.h +$(PSSRC)isave.h:$(GLSRC)stdint_.h +$(PSSRC)isave.h:$(GLSRC)gssprintf.h $(PSSRC)isave.h:$(GLSRC)std.h +$(PSSRC)isave.h:$(GLSRC)gstypes.h $(PSSRC)isave.h:$(GLSRC)stdpre.h $(PSSRC)isave.h:$(GLGEN)arch.h -$(PSSRC)isave.h:$(GLSRC)gssprintf.h -$(PSSRC)isstate.h:$(GLSRC)gxalloc.h $(PSSRC)isstate.h:$(GLSRC)gsgc.h +$(PSSRC)isstate.h:$(GLSRC)gxalloc.h $(PSSRC)isstate.h:$(GLSRC)gxobj.h $(PSSRC)isstate.h:$(GLSRC)gxbitmap.h $(PSSRC)isstate.h:$(GLSRC)gsstruct.h @@ -2322,175 +2323,175 @@ $(PSSRC)isstate.h:$(GLSRC)gsbitmap.h $(PSSRC)isstate.h:$(GLSRC)gsstype.h $(PSSRC)isstate.h:$(GLSRC)gsmemory.h $(PSSRC)isstate.h:$(GLSRC)gslibctx.h -$(PSSRC)isstate.h:$(GLSRC)gsalloc.h -$(PSSRC)isstate.h:$(GLSRC)stdint_.h $(PSSRC)isstate.h:$(GLSRC)gs_dll_call.h +$(PSSRC)isstate.h:$(GLSRC)gsalloc.h $(PSSRC)isstate.h:$(GLSRC)stdio_.h -$(PSSRC)isstate.h:$(GLSRC)gstypes.h +$(PSSRC)isstate.h:$(GLSRC)stdint_.h +$(PSSRC)isstate.h:$(GLSRC)gssprintf.h $(PSSRC)isstate.h:$(GLSRC)std.h +$(PSSRC)isstate.h:$(GLSRC)gstypes.h $(PSSRC)isstate.h:$(GLSRC)stdpre.h $(PSSRC)isstate.h:$(GLGEN)arch.h -$(PSSRC)isstate.h:$(GLSRC)gssprintf.h $(PSSRC)istruct.h:$(PSSRC)iref.h $(PSSRC)istruct.h:$(GLSRC)gxalloc.h $(PSSRC)istruct.h:$(GLSRC)gxobj.h $(PSSRC)istruct.h:$(GLSRC)gsnamecl.h $(PSSRC)istruct.h:$(GLSRC)gxcspace.h -$(PSSRC)istruct.h:$(GLSRC)gxfrac.h $(PSSRC)istruct.h:$(GLSRC)gsdcolor.h +$(PSSRC)istruct.h:$(GLSRC)gxfrac.h $(PSSRC)istruct.h:$(GLSRC)gscms.h -$(PSSRC)istruct.h:$(GLSRC)gsdevice.h $(PSSRC)istruct.h:$(GLSRC)gscspace.h +$(PSSRC)istruct.h:$(GLSRC)gsdevice.h $(PSSRC)istruct.h:$(GLSRC)gxarith.h -$(PSSRC)istruct.h:$(GLSRC)gsrefct.h -$(PSSRC)istruct.h:$(GLSRC)gsiparam.h $(PSSRC)istruct.h:$(GLSRC)gxhttile.h -$(PSSRC)istruct.h:$(GLSRC)memento.h -$(PSSRC)istruct.h:$(GLSRC)gsparam.h -$(PSSRC)istruct.h:$(GLSRC)gsmatrix.h +$(PSSRC)istruct.h:$(GLSRC)gsiparam.h $(PSSRC)istruct.h:$(GLSRC)gxbitmap.h +$(PSSRC)istruct.h:$(GLSRC)gsmatrix.h +$(PSSRC)istruct.h:$(GLSRC)gsrefct.h +$(PSSRC)istruct.h:$(GLSRC)gsparam.h +$(PSSRC)istruct.h:$(GLSRC)gsccolor.h $(PSSRC)istruct.h:$(GLSRC)gsstruct.h $(PSSRC)istruct.h:$(GLSRC)gxsync.h -$(PSSRC)istruct.h:$(GLSRC)gscsel.h $(PSSRC)istruct.h:$(GLSRC)scommon.h +$(PSSRC)istruct.h:$(GLSRC)memento.h +$(PSSRC)istruct.h:$(GLSRC)gscsel.h $(PSSRC)istruct.h:$(GLSRC)gsbitmap.h -$(PSSRC)istruct.h:$(GLSRC)gsccolor.h $(PSSRC)istruct.h:$(GLSRC)gsstype.h $(PSSRC)istruct.h:$(GLSRC)gsmemory.h $(PSSRC)istruct.h:$(GLSRC)gpsync.h $(PSSRC)istruct.h:$(GLSRC)gslibctx.h +$(PSSRC)istruct.h:$(GLSRC)gs_dll_call.h $(PSSRC)istruct.h:$(GLSRC)gsalloc.h +$(PSSRC)istruct.h:$(GLSRC)stdio_.h $(PSSRC)istruct.h:$(GLSRC)gxcindex.h -$(PSSRC)istruct.h:$(GLSRC)stdint_.h $(PSSRC)istruct.h:$(GLSRC)gsgstate.h -$(PSSRC)istruct.h:$(GLSRC)gs_dll_call.h -$(PSSRC)istruct.h:$(GLSRC)stdio_.h -$(PSSRC)istruct.h:$(GLSRC)gstypes.h +$(PSSRC)istruct.h:$(GLSRC)stdint_.h +$(PSSRC)istruct.h:$(GLSRC)gssprintf.h $(PSSRC)istruct.h:$(GLSRC)std.h +$(PSSRC)istruct.h:$(GLSRC)gstypes.h $(PSSRC)istruct.h:$(GLSRC)stdpre.h $(PSSRC)istruct.h:$(GLGEN)arch.h -$(PSSRC)istruct.h:$(GLSRC)gssprintf.h $(PSSRC)iutil.h:$(PSSRC)imemory.h $(PSSRC)iutil.h:$(PSSRC)ivmspace.h $(PSSRC)iutil.h:$(PSSRC)iref.h -$(PSSRC)iutil.h:$(GLSRC)gxalloc.h $(PSSRC)iutil.h:$(GLSRC)gsgc.h +$(PSSRC)iutil.h:$(GLSRC)gxalloc.h $(PSSRC)iutil.h:$(GLSRC)gxobj.h $(PSSRC)iutil.h:$(GLSRC)gsnamecl.h $(PSSRC)iutil.h:$(GLSRC)gxcspace.h -$(PSSRC)iutil.h:$(GLSRC)gxfrac.h $(PSSRC)iutil.h:$(GLSRC)gsdcolor.h +$(PSSRC)iutil.h:$(GLSRC)gxfrac.h $(PSSRC)iutil.h:$(GLSRC)gscms.h -$(PSSRC)iutil.h:$(GLSRC)gsdevice.h $(PSSRC)iutil.h:$(GLSRC)gscspace.h +$(PSSRC)iutil.h:$(GLSRC)gsdevice.h $(PSSRC)iutil.h:$(GLSRC)gxarith.h -$(PSSRC)iutil.h:$(GLSRC)gsrefct.h -$(PSSRC)iutil.h:$(GLSRC)gsiparam.h $(PSSRC)iutil.h:$(GLSRC)gxhttile.h -$(PSSRC)iutil.h:$(GLSRC)memento.h -$(PSSRC)iutil.h:$(GLSRC)gsparam.h -$(PSSRC)iutil.h:$(GLSRC)gsmatrix.h +$(PSSRC)iutil.h:$(GLSRC)gsiparam.h $(PSSRC)iutil.h:$(GLSRC)gxbitmap.h +$(PSSRC)iutil.h:$(GLSRC)gsmatrix.h +$(PSSRC)iutil.h:$(GLSRC)gsrefct.h +$(PSSRC)iutil.h:$(GLSRC)gsparam.h +$(PSSRC)iutil.h:$(GLSRC)gsccolor.h $(PSSRC)iutil.h:$(GLSRC)gsstruct.h $(PSSRC)iutil.h:$(GLSRC)gxsync.h -$(PSSRC)iutil.h:$(GLSRC)gscsel.h $(PSSRC)iutil.h:$(GLSRC)scommon.h +$(PSSRC)iutil.h:$(GLSRC)memento.h +$(PSSRC)iutil.h:$(GLSRC)gscsel.h $(PSSRC)iutil.h:$(GLSRC)gsbitmap.h -$(PSSRC)iutil.h:$(GLSRC)gsccolor.h $(PSSRC)iutil.h:$(GLSRC)gsstype.h $(PSSRC)iutil.h:$(GLSRC)gsmemory.h $(PSSRC)iutil.h:$(GLSRC)gpsync.h $(PSSRC)iutil.h:$(GLSRC)gslibctx.h +$(PSSRC)iutil.h:$(GLSRC)gs_dll_call.h $(PSSRC)iutil.h:$(GLSRC)gsalloc.h +$(PSSRC)iutil.h:$(GLSRC)stdio_.h $(PSSRC)iutil.h:$(GLSRC)gxcindex.h -$(PSSRC)iutil.h:$(GLSRC)stdint_.h $(PSSRC)iutil.h:$(GLSRC)gsgstate.h -$(PSSRC)iutil.h:$(GLSRC)gs_dll_call.h -$(PSSRC)iutil.h:$(GLSRC)stdio_.h -$(PSSRC)iutil.h:$(GLSRC)gstypes.h +$(PSSRC)iutil.h:$(GLSRC)stdint_.h +$(PSSRC)iutil.h:$(GLSRC)gssprintf.h $(PSSRC)iutil.h:$(GLSRC)std.h +$(PSSRC)iutil.h:$(GLSRC)gstypes.h $(PSSRC)iutil.h:$(GLSRC)stdpre.h $(PSSRC)iutil.h:$(GLGEN)arch.h -$(PSSRC)iutil.h:$(GLSRC)gssprintf.h $(PSSRC)ivmspace.h:$(PSSRC)iref.h -$(PSSRC)ivmspace.h:$(GLSRC)gxalloc.h $(PSSRC)ivmspace.h:$(GLSRC)gsgc.h +$(PSSRC)ivmspace.h:$(GLSRC)gxalloc.h $(PSSRC)ivmspace.h:$(GLSRC)gxobj.h $(PSSRC)ivmspace.h:$(GLSRC)gsnamecl.h $(PSSRC)ivmspace.h:$(GLSRC)gxcspace.h -$(PSSRC)ivmspace.h:$(GLSRC)gxfrac.h $(PSSRC)ivmspace.h:$(GLSRC)gsdcolor.h +$(PSSRC)ivmspace.h:$(GLSRC)gxfrac.h $(PSSRC)ivmspace.h:$(GLSRC)gscms.h -$(PSSRC)ivmspace.h:$(GLSRC)gsdevice.h $(PSSRC)ivmspace.h:$(GLSRC)gscspace.h +$(PSSRC)ivmspace.h:$(GLSRC)gsdevice.h $(PSSRC)ivmspace.h:$(GLSRC)gxarith.h -$(PSSRC)ivmspace.h:$(GLSRC)gsrefct.h -$(PSSRC)ivmspace.h:$(GLSRC)gsiparam.h $(PSSRC)ivmspace.h:$(GLSRC)gxhttile.h -$(PSSRC)ivmspace.h:$(GLSRC)memento.h -$(PSSRC)ivmspace.h:$(GLSRC)gsparam.h -$(PSSRC)ivmspace.h:$(GLSRC)gsmatrix.h +$(PSSRC)ivmspace.h:$(GLSRC)gsiparam.h $(PSSRC)ivmspace.h:$(GLSRC)gxbitmap.h +$(PSSRC)ivmspace.h:$(GLSRC)gsmatrix.h +$(PSSRC)ivmspace.h:$(GLSRC)gsrefct.h +$(PSSRC)ivmspace.h:$(GLSRC)gsparam.h +$(PSSRC)ivmspace.h:$(GLSRC)gsccolor.h $(PSSRC)ivmspace.h:$(GLSRC)gsstruct.h $(PSSRC)ivmspace.h:$(GLSRC)gxsync.h -$(PSSRC)ivmspace.h:$(GLSRC)gscsel.h $(PSSRC)ivmspace.h:$(GLSRC)scommon.h +$(PSSRC)ivmspace.h:$(GLSRC)memento.h +$(PSSRC)ivmspace.h:$(GLSRC)gscsel.h $(PSSRC)ivmspace.h:$(GLSRC)gsbitmap.h -$(PSSRC)ivmspace.h:$(GLSRC)gsccolor.h $(PSSRC)ivmspace.h:$(GLSRC)gsstype.h $(PSSRC)ivmspace.h:$(GLSRC)gsmemory.h $(PSSRC)ivmspace.h:$(GLSRC)gpsync.h $(PSSRC)ivmspace.h:$(GLSRC)gslibctx.h +$(PSSRC)ivmspace.h:$(GLSRC)gs_dll_call.h $(PSSRC)ivmspace.h:$(GLSRC)gsalloc.h +$(PSSRC)ivmspace.h:$(GLSRC)stdio_.h $(PSSRC)ivmspace.h:$(GLSRC)gxcindex.h -$(PSSRC)ivmspace.h:$(GLSRC)stdint_.h $(PSSRC)ivmspace.h:$(GLSRC)gsgstate.h -$(PSSRC)ivmspace.h:$(GLSRC)gs_dll_call.h -$(PSSRC)ivmspace.h:$(GLSRC)stdio_.h -$(PSSRC)ivmspace.h:$(GLSRC)gstypes.h +$(PSSRC)ivmspace.h:$(GLSRC)stdint_.h +$(PSSRC)ivmspace.h:$(GLSRC)gssprintf.h $(PSSRC)ivmspace.h:$(GLSRC)std.h +$(PSSRC)ivmspace.h:$(GLSRC)gstypes.h $(PSSRC)ivmspace.h:$(GLSRC)stdpre.h $(PSSRC)ivmspace.h:$(GLGEN)arch.h -$(PSSRC)ivmspace.h:$(GLSRC)gssprintf.h $(PSSRC)opdef.h:$(PSSRC)iref.h $(PSSRC)opdef.h:$(GLSRC)gxalloc.h $(PSSRC)opdef.h:$(GLSRC)gxobj.h $(PSSRC)opdef.h:$(GLSRC)gsnamecl.h $(PSSRC)opdef.h:$(GLSRC)gxcspace.h -$(PSSRC)opdef.h:$(GLSRC)gxfrac.h $(PSSRC)opdef.h:$(GLSRC)gsdcolor.h +$(PSSRC)opdef.h:$(GLSRC)gxfrac.h $(PSSRC)opdef.h:$(GLSRC)gscms.h -$(PSSRC)opdef.h:$(GLSRC)gsdevice.h $(PSSRC)opdef.h:$(GLSRC)gscspace.h +$(PSSRC)opdef.h:$(GLSRC)gsdevice.h $(PSSRC)opdef.h:$(GLSRC)gxarith.h -$(PSSRC)opdef.h:$(GLSRC)gsrefct.h -$(PSSRC)opdef.h:$(GLSRC)gsiparam.h $(PSSRC)opdef.h:$(GLSRC)gxhttile.h -$(PSSRC)opdef.h:$(GLSRC)memento.h -$(PSSRC)opdef.h:$(GLSRC)gsparam.h -$(PSSRC)opdef.h:$(GLSRC)gsmatrix.h +$(PSSRC)opdef.h:$(GLSRC)gsiparam.h $(PSSRC)opdef.h:$(GLSRC)gxbitmap.h +$(PSSRC)opdef.h:$(GLSRC)gsmatrix.h +$(PSSRC)opdef.h:$(GLSRC)gsrefct.h +$(PSSRC)opdef.h:$(GLSRC)gsparam.h +$(PSSRC)opdef.h:$(GLSRC)gsccolor.h $(PSSRC)opdef.h:$(GLSRC)gsstruct.h $(PSSRC)opdef.h:$(GLSRC)gxsync.h -$(PSSRC)opdef.h:$(GLSRC)gscsel.h $(PSSRC)opdef.h:$(GLSRC)scommon.h +$(PSSRC)opdef.h:$(GLSRC)memento.h +$(PSSRC)opdef.h:$(GLSRC)gscsel.h $(PSSRC)opdef.h:$(GLSRC)gsbitmap.h -$(PSSRC)opdef.h:$(GLSRC)gsccolor.h $(PSSRC)opdef.h:$(GLSRC)gsstype.h $(PSSRC)opdef.h:$(GLSRC)gsmemory.h $(PSSRC)opdef.h:$(GLSRC)gpsync.h $(PSSRC)opdef.h:$(GLSRC)gslibctx.h +$(PSSRC)opdef.h:$(GLSRC)gs_dll_call.h $(PSSRC)opdef.h:$(GLSRC)gsalloc.h +$(PSSRC)opdef.h:$(GLSRC)stdio_.h $(PSSRC)opdef.h:$(GLSRC)gxcindex.h -$(PSSRC)opdef.h:$(GLSRC)stdint_.h $(PSSRC)opdef.h:$(GLSRC)gsgstate.h -$(PSSRC)opdef.h:$(GLSRC)gs_dll_call.h -$(PSSRC)opdef.h:$(GLSRC)stdio_.h -$(PSSRC)opdef.h:$(GLSRC)gstypes.h +$(PSSRC)opdef.h:$(GLSRC)stdint_.h +$(PSSRC)opdef.h:$(GLSRC)gssprintf.h $(PSSRC)opdef.h:$(GLSRC)std.h +$(PSSRC)opdef.h:$(GLSRC)gstypes.h $(PSSRC)opdef.h:$(GLSRC)stdpre.h $(PSSRC)opdef.h:$(GLGEN)arch.h -$(PSSRC)opdef.h:$(GLSRC)gssprintf.h $(PSSRC)ghost.h:$(GLSRC)gx.h $(PSSRC)ghost.h:$(GLSRC)gdebug.h $(PSSRC)ghost.h:$(PSSRC)iref.h @@ -2498,1047 +2499,1048 @@ $(PSSRC)ghost.h:$(GLSRC)gxalloc.h $(PSSRC)ghost.h:$(GLSRC)gxobj.h $(PSSRC)ghost.h:$(GLSRC)gsnamecl.h $(PSSRC)ghost.h:$(GLSRC)gxcspace.h -$(PSSRC)ghost.h:$(GLSRC)gxfrac.h $(PSSRC)ghost.h:$(GLSRC)gsdcolor.h +$(PSSRC)ghost.h:$(GLSRC)gxfrac.h $(PSSRC)ghost.h:$(GLSRC)gscms.h -$(PSSRC)ghost.h:$(GLSRC)gsdevice.h $(PSSRC)ghost.h:$(GLSRC)gscspace.h +$(PSSRC)ghost.h:$(GLSRC)gsdevice.h $(PSSRC)ghost.h:$(GLSRC)gxarith.h -$(PSSRC)ghost.h:$(GLSRC)gsrefct.h -$(PSSRC)ghost.h:$(GLSRC)gsiparam.h $(PSSRC)ghost.h:$(GLSRC)gxhttile.h +$(PSSRC)ghost.h:$(GLSRC)gsiparam.h $(PSSRC)ghost.h:$(GLSRC)gsio.h -$(PSSRC)ghost.h:$(GLSRC)memento.h -$(PSSRC)ghost.h:$(GLSRC)gsparam.h -$(PSSRC)ghost.h:$(GLSRC)gsmatrix.h $(PSSRC)ghost.h:$(GLSRC)gxbitmap.h -$(PSSRC)ghost.h:$(GLSRC)gdbflags.h +$(PSSRC)ghost.h:$(GLSRC)gsmatrix.h +$(PSSRC)ghost.h:$(GLSRC)gsrefct.h +$(PSSRC)ghost.h:$(GLSRC)gsparam.h +$(PSSRC)ghost.h:$(GLSRC)gsccolor.h $(PSSRC)ghost.h:$(GLSRC)gsstruct.h -$(PSSRC)ghost.h:$(GLSRC)gserrors.h $(PSSRC)ghost.h:$(GLSRC)gxsync.h -$(PSSRC)ghost.h:$(GLSRC)gscsel.h +$(PSSRC)ghost.h:$(GLSRC)gdbflags.h +$(PSSRC)ghost.h:$(GLSRC)gserrors.h $(PSSRC)ghost.h:$(GLSRC)scommon.h +$(PSSRC)ghost.h:$(GLSRC)memento.h +$(PSSRC)ghost.h:$(GLSRC)gscsel.h $(PSSRC)ghost.h:$(GLSRC)gsbitmap.h -$(PSSRC)ghost.h:$(GLSRC)gsccolor.h $(PSSRC)ghost.h:$(GLSRC)gsstype.h $(PSSRC)ghost.h:$(GLSRC)gsmemory.h $(PSSRC)ghost.h:$(GLSRC)gpsync.h $(PSSRC)ghost.h:$(GLSRC)gslibctx.h +$(PSSRC)ghost.h:$(GLSRC)gs_dll_call.h $(PSSRC)ghost.h:$(GLSRC)gsalloc.h +$(PSSRC)ghost.h:$(GLSRC)stdio_.h $(PSSRC)ghost.h:$(GLSRC)gxcindex.h -$(PSSRC)ghost.h:$(GLSRC)stdint_.h $(PSSRC)ghost.h:$(GLSRC)gsgstate.h -$(PSSRC)ghost.h:$(GLSRC)gs_dll_call.h -$(PSSRC)ghost.h:$(GLSRC)stdio_.h -$(PSSRC)ghost.h:$(GLSRC)gstypes.h +$(PSSRC)ghost.h:$(GLSRC)stdint_.h +$(PSSRC)ghost.h:$(GLSRC)gssprintf.h $(PSSRC)ghost.h:$(GLSRC)std.h +$(PSSRC)ghost.h:$(GLSRC)gstypes.h $(PSSRC)ghost.h:$(GLSRC)stdpre.h $(PSSRC)ghost.h:$(GLGEN)arch.h -$(PSSRC)ghost.h:$(GLSRC)gssprintf.h $(PSSRC)igc.h:$(PSSRC)istruct.h $(PSSRC)igc.h:$(PSSRC)inames.h $(PSSRC)igc.h:$(PSSRC)imemory.h $(PSSRC)igc.h:$(PSSRC)ivmspace.h $(PSSRC)igc.h:$(PSSRC)iref.h -$(PSSRC)igc.h:$(GLSRC)gxalloc.h $(PSSRC)igc.h:$(GLSRC)gsgc.h +$(PSSRC)igc.h:$(GLSRC)gxalloc.h $(PSSRC)igc.h:$(GLSRC)gxobj.h $(PSSRC)igc.h:$(GLSRC)gsnamecl.h $(PSSRC)igc.h:$(GLSRC)gxcspace.h -$(PSSRC)igc.h:$(GLSRC)gxfrac.h $(PSSRC)igc.h:$(GLSRC)gsdcolor.h +$(PSSRC)igc.h:$(GLSRC)gxfrac.h $(PSSRC)igc.h:$(GLSRC)gscms.h -$(PSSRC)igc.h:$(GLSRC)gsdevice.h $(PSSRC)igc.h:$(GLSRC)gscspace.h +$(PSSRC)igc.h:$(GLSRC)gsdevice.h $(PSSRC)igc.h:$(GLSRC)gxarith.h -$(PSSRC)igc.h:$(GLSRC)gsrefct.h -$(PSSRC)igc.h:$(GLSRC)gsiparam.h $(PSSRC)igc.h:$(GLSRC)gxhttile.h -$(PSSRC)igc.h:$(GLSRC)memento.h -$(PSSRC)igc.h:$(GLSRC)gsparam.h -$(PSSRC)igc.h:$(GLSRC)gsmatrix.h +$(PSSRC)igc.h:$(GLSRC)gsiparam.h $(PSSRC)igc.h:$(GLSRC)gxbitmap.h +$(PSSRC)igc.h:$(GLSRC)gsmatrix.h +$(PSSRC)igc.h:$(GLSRC)gsrefct.h +$(PSSRC)igc.h:$(GLSRC)gsparam.h +$(PSSRC)igc.h:$(GLSRC)gsccolor.h $(PSSRC)igc.h:$(GLSRC)gsstruct.h $(PSSRC)igc.h:$(GLSRC)gxsync.h -$(PSSRC)igc.h:$(GLSRC)gscsel.h $(PSSRC)igc.h:$(GLSRC)scommon.h +$(PSSRC)igc.h:$(GLSRC)memento.h +$(PSSRC)igc.h:$(GLSRC)gscsel.h $(PSSRC)igc.h:$(GLSRC)gsbitmap.h -$(PSSRC)igc.h:$(GLSRC)gsccolor.h $(PSSRC)igc.h:$(GLSRC)gsstype.h $(PSSRC)igc.h:$(GLSRC)gsmemory.h $(PSSRC)igc.h:$(GLSRC)gpsync.h $(PSSRC)igc.h:$(GLSRC)gslibctx.h +$(PSSRC)igc.h:$(GLSRC)gs_dll_call.h $(PSSRC)igc.h:$(GLSRC)gsalloc.h +$(PSSRC)igc.h:$(GLSRC)stdio_.h $(PSSRC)igc.h:$(GLSRC)gxcindex.h -$(PSSRC)igc.h:$(GLSRC)stdint_.h $(PSSRC)igc.h:$(GLSRC)gsgstate.h -$(PSSRC)igc.h:$(GLSRC)gs_dll_call.h -$(PSSRC)igc.h:$(GLSRC)stdio_.h -$(PSSRC)igc.h:$(GLSRC)gstypes.h +$(PSSRC)igc.h:$(GLSRC)stdint_.h +$(PSSRC)igc.h:$(GLSRC)gssprintf.h $(PSSRC)igc.h:$(GLSRC)std.h +$(PSSRC)igc.h:$(GLSRC)gstypes.h $(PSSRC)igc.h:$(GLSRC)stdpre.h $(PSSRC)igc.h:$(GLGEN)arch.h -$(PSSRC)igc.h:$(GLSRC)gssprintf.h $(PSSRC)imemory.h:$(PSSRC)ivmspace.h $(PSSRC)imemory.h:$(PSSRC)iref.h -$(PSSRC)imemory.h:$(GLSRC)gxalloc.h $(PSSRC)imemory.h:$(GLSRC)gsgc.h +$(PSSRC)imemory.h:$(GLSRC)gxalloc.h $(PSSRC)imemory.h:$(GLSRC)gxobj.h $(PSSRC)imemory.h:$(GLSRC)gsnamecl.h $(PSSRC)imemory.h:$(GLSRC)gxcspace.h -$(PSSRC)imemory.h:$(GLSRC)gxfrac.h $(PSSRC)imemory.h:$(GLSRC)gsdcolor.h +$(PSSRC)imemory.h:$(GLSRC)gxfrac.h $(PSSRC)imemory.h:$(GLSRC)gscms.h -$(PSSRC)imemory.h:$(GLSRC)gsdevice.h $(PSSRC)imemory.h:$(GLSRC)gscspace.h +$(PSSRC)imemory.h:$(GLSRC)gsdevice.h $(PSSRC)imemory.h:$(GLSRC)gxarith.h -$(PSSRC)imemory.h:$(GLSRC)gsrefct.h -$(PSSRC)imemory.h:$(GLSRC)gsiparam.h $(PSSRC)imemory.h:$(GLSRC)gxhttile.h -$(PSSRC)imemory.h:$(GLSRC)memento.h -$(PSSRC)imemory.h:$(GLSRC)gsparam.h -$(PSSRC)imemory.h:$(GLSRC)gsmatrix.h +$(PSSRC)imemory.h:$(GLSRC)gsiparam.h $(PSSRC)imemory.h:$(GLSRC)gxbitmap.h +$(PSSRC)imemory.h:$(GLSRC)gsmatrix.h +$(PSSRC)imemory.h:$(GLSRC)gsrefct.h +$(PSSRC)imemory.h:$(GLSRC)gsparam.h +$(PSSRC)imemory.h:$(GLSRC)gsccolor.h $(PSSRC)imemory.h:$(GLSRC)gsstruct.h $(PSSRC)imemory.h:$(GLSRC)gxsync.h -$(PSSRC)imemory.h:$(GLSRC)gscsel.h $(PSSRC)imemory.h:$(GLSRC)scommon.h +$(PSSRC)imemory.h:$(GLSRC)memento.h +$(PSSRC)imemory.h:$(GLSRC)gscsel.h $(PSSRC)imemory.h:$(GLSRC)gsbitmap.h -$(PSSRC)imemory.h:$(GLSRC)gsccolor.h $(PSSRC)imemory.h:$(GLSRC)gsstype.h $(PSSRC)imemory.h:$(GLSRC)gsmemory.h $(PSSRC)imemory.h:$(GLSRC)gpsync.h $(PSSRC)imemory.h:$(GLSRC)gslibctx.h +$(PSSRC)imemory.h:$(GLSRC)gs_dll_call.h $(PSSRC)imemory.h:$(GLSRC)gsalloc.h +$(PSSRC)imemory.h:$(GLSRC)stdio_.h $(PSSRC)imemory.h:$(GLSRC)gxcindex.h -$(PSSRC)imemory.h:$(GLSRC)stdint_.h $(PSSRC)imemory.h:$(GLSRC)gsgstate.h -$(PSSRC)imemory.h:$(GLSRC)gs_dll_call.h -$(PSSRC)imemory.h:$(GLSRC)stdio_.h -$(PSSRC)imemory.h:$(GLSRC)gstypes.h +$(PSSRC)imemory.h:$(GLSRC)stdint_.h +$(PSSRC)imemory.h:$(GLSRC)gssprintf.h $(PSSRC)imemory.h:$(GLSRC)std.h +$(PSSRC)imemory.h:$(GLSRC)gstypes.h $(PSSRC)imemory.h:$(GLSRC)stdpre.h $(PSSRC)imemory.h:$(GLGEN)arch.h -$(PSSRC)imemory.h:$(GLSRC)gssprintf.h $(PSSRC)ialloc.h:$(PSSRC)imemory.h $(PSSRC)ialloc.h:$(PSSRC)ivmspace.h $(PSSRC)ialloc.h:$(PSSRC)iref.h -$(PSSRC)ialloc.h:$(GLSRC)gxalloc.h $(PSSRC)ialloc.h:$(GLSRC)gsgc.h +$(PSSRC)ialloc.h:$(GLSRC)gxalloc.h $(PSSRC)ialloc.h:$(GLSRC)gxobj.h $(PSSRC)ialloc.h:$(GLSRC)gsnamecl.h $(PSSRC)ialloc.h:$(GLSRC)gxcspace.h -$(PSSRC)ialloc.h:$(GLSRC)gxfrac.h $(PSSRC)ialloc.h:$(GLSRC)gsdcolor.h +$(PSSRC)ialloc.h:$(GLSRC)gxfrac.h $(PSSRC)ialloc.h:$(GLSRC)gscms.h -$(PSSRC)ialloc.h:$(GLSRC)gsdevice.h $(PSSRC)ialloc.h:$(GLSRC)gscspace.h +$(PSSRC)ialloc.h:$(GLSRC)gsdevice.h $(PSSRC)ialloc.h:$(GLSRC)gxarith.h -$(PSSRC)ialloc.h:$(GLSRC)gsrefct.h -$(PSSRC)ialloc.h:$(GLSRC)gsiparam.h $(PSSRC)ialloc.h:$(GLSRC)gxhttile.h -$(PSSRC)ialloc.h:$(GLSRC)memento.h -$(PSSRC)ialloc.h:$(GLSRC)gsparam.h -$(PSSRC)ialloc.h:$(GLSRC)gsmatrix.h +$(PSSRC)ialloc.h:$(GLSRC)gsiparam.h $(PSSRC)ialloc.h:$(GLSRC)gxbitmap.h +$(PSSRC)ialloc.h:$(GLSRC)gsmatrix.h +$(PSSRC)ialloc.h:$(GLSRC)gsrefct.h +$(PSSRC)ialloc.h:$(GLSRC)gsparam.h +$(PSSRC)ialloc.h:$(GLSRC)gsccolor.h $(PSSRC)ialloc.h:$(GLSRC)gsstruct.h $(PSSRC)ialloc.h:$(GLSRC)gxsync.h -$(PSSRC)ialloc.h:$(GLSRC)gscsel.h $(PSSRC)ialloc.h:$(GLSRC)scommon.h +$(PSSRC)ialloc.h:$(GLSRC)memento.h +$(PSSRC)ialloc.h:$(GLSRC)gscsel.h $(PSSRC)ialloc.h:$(GLSRC)gsbitmap.h -$(PSSRC)ialloc.h:$(GLSRC)gsccolor.h $(PSSRC)ialloc.h:$(GLSRC)gsstype.h $(PSSRC)ialloc.h:$(GLSRC)gsmemory.h $(PSSRC)ialloc.h:$(GLSRC)gpsync.h $(PSSRC)ialloc.h:$(GLSRC)gslibctx.h +$(PSSRC)ialloc.h:$(GLSRC)gs_dll_call.h $(PSSRC)ialloc.h:$(GLSRC)gsalloc.h +$(PSSRC)ialloc.h:$(GLSRC)stdio_.h $(PSSRC)ialloc.h:$(GLSRC)gxcindex.h -$(PSSRC)ialloc.h:$(GLSRC)stdint_.h $(PSSRC)ialloc.h:$(GLSRC)gsgstate.h -$(PSSRC)ialloc.h:$(GLSRC)gs_dll_call.h -$(PSSRC)ialloc.h:$(GLSRC)stdio_.h -$(PSSRC)ialloc.h:$(GLSRC)gstypes.h +$(PSSRC)ialloc.h:$(GLSRC)stdint_.h +$(PSSRC)ialloc.h:$(GLSRC)gssprintf.h $(PSSRC)ialloc.h:$(GLSRC)std.h +$(PSSRC)ialloc.h:$(GLSRC)gstypes.h $(PSSRC)ialloc.h:$(GLSRC)stdpre.h $(PSSRC)ialloc.h:$(GLGEN)arch.h -$(PSSRC)ialloc.h:$(GLSRC)gssprintf.h $(PSSRC)iastruct.h:$(PSSRC)ialloc.h $(PSSRC)iastruct.h:$(PSSRC)imemory.h $(PSSRC)iastruct.h:$(PSSRC)ivmspace.h $(PSSRC)iastruct.h:$(PSSRC)iref.h -$(PSSRC)iastruct.h:$(GLSRC)gxalloc.h $(PSSRC)iastruct.h:$(GLSRC)gsgc.h +$(PSSRC)iastruct.h:$(GLSRC)gxalloc.h $(PSSRC)iastruct.h:$(GLSRC)gxobj.h $(PSSRC)iastruct.h:$(GLSRC)gsnamecl.h $(PSSRC)iastruct.h:$(GLSRC)gxcspace.h -$(PSSRC)iastruct.h:$(GLSRC)gxfrac.h $(PSSRC)iastruct.h:$(GLSRC)gsdcolor.h +$(PSSRC)iastruct.h:$(GLSRC)gxfrac.h $(PSSRC)iastruct.h:$(GLSRC)gscms.h -$(PSSRC)iastruct.h:$(GLSRC)gsdevice.h $(PSSRC)iastruct.h:$(GLSRC)gscspace.h +$(PSSRC)iastruct.h:$(GLSRC)gsdevice.h $(PSSRC)iastruct.h:$(GLSRC)gxarith.h -$(PSSRC)iastruct.h:$(GLSRC)gsrefct.h -$(PSSRC)iastruct.h:$(GLSRC)gsiparam.h $(PSSRC)iastruct.h:$(GLSRC)gxhttile.h -$(PSSRC)iastruct.h:$(GLSRC)memento.h -$(PSSRC)iastruct.h:$(GLSRC)gsparam.h -$(PSSRC)iastruct.h:$(GLSRC)gsmatrix.h +$(PSSRC)iastruct.h:$(GLSRC)gsiparam.h $(PSSRC)iastruct.h:$(GLSRC)gxbitmap.h +$(PSSRC)iastruct.h:$(GLSRC)gsmatrix.h +$(PSSRC)iastruct.h:$(GLSRC)gsrefct.h +$(PSSRC)iastruct.h:$(GLSRC)gsparam.h +$(PSSRC)iastruct.h:$(GLSRC)gsccolor.h $(PSSRC)iastruct.h:$(GLSRC)gsstruct.h $(PSSRC)iastruct.h:$(GLSRC)gxsync.h -$(PSSRC)iastruct.h:$(GLSRC)gscsel.h $(PSSRC)iastruct.h:$(GLSRC)scommon.h +$(PSSRC)iastruct.h:$(GLSRC)memento.h +$(PSSRC)iastruct.h:$(GLSRC)gscsel.h $(PSSRC)iastruct.h:$(GLSRC)gsbitmap.h -$(PSSRC)iastruct.h:$(GLSRC)gsccolor.h $(PSSRC)iastruct.h:$(GLSRC)gsstype.h $(PSSRC)iastruct.h:$(GLSRC)gsmemory.h $(PSSRC)iastruct.h:$(GLSRC)gpsync.h $(PSSRC)iastruct.h:$(GLSRC)gslibctx.h +$(PSSRC)iastruct.h:$(GLSRC)gs_dll_call.h $(PSSRC)iastruct.h:$(GLSRC)gsalloc.h +$(PSSRC)iastruct.h:$(GLSRC)stdio_.h $(PSSRC)iastruct.h:$(GLSRC)gxcindex.h -$(PSSRC)iastruct.h:$(GLSRC)stdint_.h $(PSSRC)iastruct.h:$(GLSRC)gsgstate.h -$(PSSRC)iastruct.h:$(GLSRC)gs_dll_call.h -$(PSSRC)iastruct.h:$(GLSRC)stdio_.h -$(PSSRC)iastruct.h:$(GLSRC)gstypes.h +$(PSSRC)iastruct.h:$(GLSRC)stdint_.h +$(PSSRC)iastruct.h:$(GLSRC)gssprintf.h $(PSSRC)iastruct.h:$(GLSRC)std.h +$(PSSRC)iastruct.h:$(GLSRC)gstypes.h $(PSSRC)iastruct.h:$(GLSRC)stdpre.h $(PSSRC)iastruct.h:$(GLGEN)arch.h -$(PSSRC)iastruct.h:$(GLSRC)gssprintf.h $(PSSRC)iastate.h:$(PSSRC)istruct.h $(PSSRC)iastate.h:$(PSSRC)ialloc.h $(PSSRC)iastate.h:$(PSSRC)imemory.h $(PSSRC)iastate.h:$(PSSRC)ivmspace.h $(PSSRC)iastate.h:$(PSSRC)iref.h -$(PSSRC)iastate.h:$(GLSRC)gxalloc.h $(PSSRC)iastate.h:$(GLSRC)gsgc.h +$(PSSRC)iastate.h:$(GLSRC)gxalloc.h $(PSSRC)iastate.h:$(GLSRC)gxobj.h $(PSSRC)iastate.h:$(GLSRC)gsnamecl.h $(PSSRC)iastate.h:$(GLSRC)gxcspace.h -$(PSSRC)iastate.h:$(GLSRC)gxfrac.h $(PSSRC)iastate.h:$(GLSRC)gsdcolor.h +$(PSSRC)iastate.h:$(GLSRC)gxfrac.h $(PSSRC)iastate.h:$(GLSRC)gscms.h -$(PSSRC)iastate.h:$(GLSRC)gsdevice.h $(PSSRC)iastate.h:$(GLSRC)gscspace.h +$(PSSRC)iastate.h:$(GLSRC)gsdevice.h $(PSSRC)iastate.h:$(GLSRC)gxarith.h -$(PSSRC)iastate.h:$(GLSRC)gsrefct.h -$(PSSRC)iastate.h:$(GLSRC)gsiparam.h $(PSSRC)iastate.h:$(GLSRC)gxhttile.h -$(PSSRC)iastate.h:$(GLSRC)memento.h -$(PSSRC)iastate.h:$(GLSRC)gsparam.h -$(PSSRC)iastate.h:$(GLSRC)gsmatrix.h +$(PSSRC)iastate.h:$(GLSRC)gsiparam.h $(PSSRC)iastate.h:$(GLSRC)gxbitmap.h +$(PSSRC)iastate.h:$(GLSRC)gsmatrix.h +$(PSSRC)iastate.h:$(GLSRC)gsrefct.h +$(PSSRC)iastate.h:$(GLSRC)gsparam.h +$(PSSRC)iastate.h:$(GLSRC)gsccolor.h $(PSSRC)iastate.h:$(GLSRC)gsstruct.h $(PSSRC)iastate.h:$(GLSRC)gxsync.h -$(PSSRC)iastate.h:$(GLSRC)gscsel.h $(PSSRC)iastate.h:$(GLSRC)scommon.h +$(PSSRC)iastate.h:$(GLSRC)memento.h +$(PSSRC)iastate.h:$(GLSRC)gscsel.h $(PSSRC)iastate.h:$(GLSRC)gsbitmap.h -$(PSSRC)iastate.h:$(GLSRC)gsccolor.h $(PSSRC)iastate.h:$(GLSRC)gsstype.h $(PSSRC)iastate.h:$(GLSRC)gsmemory.h $(PSSRC)iastate.h:$(GLSRC)gpsync.h $(PSSRC)iastate.h:$(GLSRC)gslibctx.h +$(PSSRC)iastate.h:$(GLSRC)gs_dll_call.h $(PSSRC)iastate.h:$(GLSRC)gsalloc.h +$(PSSRC)iastate.h:$(GLSRC)stdio_.h $(PSSRC)iastate.h:$(GLSRC)gxcindex.h -$(PSSRC)iastate.h:$(GLSRC)stdint_.h $(PSSRC)iastate.h:$(GLSRC)gsgstate.h -$(PSSRC)iastate.h:$(GLSRC)gs_dll_call.h -$(PSSRC)iastate.h:$(GLSRC)stdio_.h -$(PSSRC)iastate.h:$(GLSRC)gstypes.h +$(PSSRC)iastate.h:$(GLSRC)stdint_.h +$(PSSRC)iastate.h:$(GLSRC)gssprintf.h $(PSSRC)iastate.h:$(GLSRC)std.h +$(PSSRC)iastate.h:$(GLSRC)gstypes.h $(PSSRC)iastate.h:$(GLSRC)stdpre.h $(PSSRC)iastate.h:$(GLGEN)arch.h -$(PSSRC)iastate.h:$(GLSRC)gssprintf.h $(PSSRC)inamedef.h:$(PSSRC)isave.h $(PSSRC)inamedef.h:$(PSSRC)inames.h $(PSSRC)inamedef.h:$(PSSRC)idosave.h $(PSSRC)inamedef.h:$(PSSRC)imemory.h $(PSSRC)inamedef.h:$(PSSRC)ivmspace.h $(PSSRC)inamedef.h:$(PSSRC)iref.h -$(PSSRC)inamedef.h:$(GLSRC)gxalloc.h $(PSSRC)inamedef.h:$(GLSRC)gsgc.h $(PSSRC)inamedef.h:$(PSSRC)inamestr.h $(PSSRC)inamedef.h:$(PSSRC)inameidx.h +$(PSSRC)inamedef.h:$(GLSRC)gxalloc.h $(PSSRC)inamedef.h:$(GLSRC)gxobj.h $(PSSRC)inamedef.h:$(GLSRC)gsnamecl.h $(PSSRC)inamedef.h:$(GLSRC)gxcspace.h -$(PSSRC)inamedef.h:$(GLSRC)gxfrac.h $(PSSRC)inamedef.h:$(GLSRC)gsdcolor.h +$(PSSRC)inamedef.h:$(GLSRC)gxfrac.h $(PSSRC)inamedef.h:$(GLSRC)gscms.h -$(PSSRC)inamedef.h:$(GLSRC)gsdevice.h $(PSSRC)inamedef.h:$(GLSRC)gscspace.h +$(PSSRC)inamedef.h:$(GLSRC)gsdevice.h $(PSSRC)inamedef.h:$(GLSRC)gxarith.h -$(PSSRC)inamedef.h:$(GLSRC)gsrefct.h -$(PSSRC)inamedef.h:$(GLSRC)gsiparam.h $(PSSRC)inamedef.h:$(GLSRC)gxhttile.h -$(PSSRC)inamedef.h:$(GLSRC)memento.h -$(PSSRC)inamedef.h:$(GLSRC)gsparam.h -$(PSSRC)inamedef.h:$(GLSRC)gsmatrix.h +$(PSSRC)inamedef.h:$(GLSRC)gsiparam.h $(PSSRC)inamedef.h:$(GLSRC)gxbitmap.h +$(PSSRC)inamedef.h:$(GLSRC)gsmatrix.h +$(PSSRC)inamedef.h:$(GLSRC)gsrefct.h +$(PSSRC)inamedef.h:$(GLSRC)gsparam.h +$(PSSRC)inamedef.h:$(GLSRC)gsccolor.h $(PSSRC)inamedef.h:$(GLSRC)gsstruct.h $(PSSRC)inamedef.h:$(GLSRC)gxsync.h -$(PSSRC)inamedef.h:$(GLSRC)gscsel.h $(PSSRC)inamedef.h:$(GLSRC)scommon.h +$(PSSRC)inamedef.h:$(GLSRC)memento.h +$(PSSRC)inamedef.h:$(GLSRC)gscsel.h $(PSSRC)inamedef.h:$(GLSRC)gsbitmap.h -$(PSSRC)inamedef.h:$(GLSRC)gsccolor.h $(PSSRC)inamedef.h:$(GLSRC)gsstype.h $(PSSRC)inamedef.h:$(GLSRC)gsmemory.h $(PSSRC)inamedef.h:$(GLSRC)gpsync.h $(PSSRC)inamedef.h:$(GLSRC)gslibctx.h +$(PSSRC)inamedef.h:$(GLSRC)gs_dll_call.h $(PSSRC)inamedef.h:$(GLSRC)gsalloc.h +$(PSSRC)inamedef.h:$(GLSRC)stdio_.h $(PSSRC)inamedef.h:$(GLSRC)gxcindex.h -$(PSSRC)inamedef.h:$(GLSRC)stdint_.h $(PSSRC)inamedef.h:$(GLSRC)gsgstate.h -$(PSSRC)inamedef.h:$(GLSRC)gs_dll_call.h -$(PSSRC)inamedef.h:$(GLSRC)stdio_.h -$(PSSRC)inamedef.h:$(GLSRC)gstypes.h +$(PSSRC)inamedef.h:$(GLSRC)stdint_.h +$(PSSRC)inamedef.h:$(GLSRC)gssprintf.h $(PSSRC)inamedef.h:$(GLSRC)std.h +$(PSSRC)inamedef.h:$(GLSRC)gstypes.h $(PSSRC)inamedef.h:$(GLSRC)stdpre.h $(PSSRC)inamedef.h:$(GLGEN)arch.h -$(PSSRC)inamedef.h:$(GLSRC)gssprintf.h $(PSSRC)store.h:$(PSSRC)ialloc.h $(PSSRC)store.h:$(PSSRC)idosave.h $(PSSRC)store.h:$(PSSRC)imemory.h $(PSSRC)store.h:$(PSSRC)ivmspace.h $(PSSRC)store.h:$(PSSRC)iref.h -$(PSSRC)store.h:$(GLSRC)gxalloc.h $(PSSRC)store.h:$(GLSRC)gsgc.h +$(PSSRC)store.h:$(GLSRC)gxalloc.h $(PSSRC)store.h:$(GLSRC)gxobj.h $(PSSRC)store.h:$(GLSRC)gsnamecl.h $(PSSRC)store.h:$(GLSRC)gxcspace.h -$(PSSRC)store.h:$(GLSRC)gxfrac.h $(PSSRC)store.h:$(GLSRC)gsdcolor.h +$(PSSRC)store.h:$(GLSRC)gxfrac.h $(PSSRC)store.h:$(GLSRC)gscms.h -$(PSSRC)store.h:$(GLSRC)gsdevice.h $(PSSRC)store.h:$(GLSRC)gscspace.h +$(PSSRC)store.h:$(GLSRC)gsdevice.h $(PSSRC)store.h:$(GLSRC)gxarith.h -$(PSSRC)store.h:$(GLSRC)gsrefct.h -$(PSSRC)store.h:$(GLSRC)gsiparam.h $(PSSRC)store.h:$(GLSRC)gxhttile.h -$(PSSRC)store.h:$(GLSRC)memento.h -$(PSSRC)store.h:$(GLSRC)gsparam.h -$(PSSRC)store.h:$(GLSRC)gsmatrix.h +$(PSSRC)store.h:$(GLSRC)gsiparam.h $(PSSRC)store.h:$(GLSRC)gxbitmap.h +$(PSSRC)store.h:$(GLSRC)gsmatrix.h +$(PSSRC)store.h:$(GLSRC)gsrefct.h +$(PSSRC)store.h:$(GLSRC)gsparam.h +$(PSSRC)store.h:$(GLSRC)gsccolor.h $(PSSRC)store.h:$(GLSRC)gsstruct.h $(PSSRC)store.h:$(GLSRC)gxsync.h -$(PSSRC)store.h:$(GLSRC)gscsel.h $(PSSRC)store.h:$(GLSRC)scommon.h +$(PSSRC)store.h:$(GLSRC)memento.h +$(PSSRC)store.h:$(GLSRC)gscsel.h $(PSSRC)store.h:$(GLSRC)gsbitmap.h -$(PSSRC)store.h:$(GLSRC)gsccolor.h $(PSSRC)store.h:$(GLSRC)gsstype.h $(PSSRC)store.h:$(GLSRC)gsmemory.h $(PSSRC)store.h:$(GLSRC)gpsync.h $(PSSRC)store.h:$(GLSRC)gslibctx.h +$(PSSRC)store.h:$(GLSRC)gs_dll_call.h $(PSSRC)store.h:$(GLSRC)gsalloc.h +$(PSSRC)store.h:$(GLSRC)stdio_.h $(PSSRC)store.h:$(GLSRC)gxcindex.h -$(PSSRC)store.h:$(GLSRC)stdint_.h $(PSSRC)store.h:$(GLSRC)gsgstate.h -$(PSSRC)store.h:$(GLSRC)gs_dll_call.h -$(PSSRC)store.h:$(GLSRC)stdio_.h -$(PSSRC)store.h:$(GLSRC)gstypes.h +$(PSSRC)store.h:$(GLSRC)stdint_.h +$(PSSRC)store.h:$(GLSRC)gssprintf.h $(PSSRC)store.h:$(GLSRC)std.h +$(PSSRC)store.h:$(GLSRC)gstypes.h $(PSSRC)store.h:$(GLSRC)stdpre.h $(PSSRC)store.h:$(GLGEN)arch.h -$(PSSRC)store.h:$(GLSRC)gssprintf.h $(PSSRC)iplugin.h:$(PSSRC)iref.h $(PSSRC)iplugin.h:$(GLSRC)gxalloc.h $(PSSRC)iplugin.h:$(GLSRC)gxobj.h $(PSSRC)iplugin.h:$(GLSRC)gsnamecl.h $(PSSRC)iplugin.h:$(GLSRC)gxcspace.h -$(PSSRC)iplugin.h:$(GLSRC)gxfrac.h $(PSSRC)iplugin.h:$(GLSRC)gsdcolor.h +$(PSSRC)iplugin.h:$(GLSRC)gxfrac.h $(PSSRC)iplugin.h:$(GLSRC)gscms.h -$(PSSRC)iplugin.h:$(GLSRC)gsdevice.h $(PSSRC)iplugin.h:$(GLSRC)gscspace.h +$(PSSRC)iplugin.h:$(GLSRC)gsdevice.h $(PSSRC)iplugin.h:$(GLSRC)gxarith.h -$(PSSRC)iplugin.h:$(GLSRC)gsrefct.h -$(PSSRC)iplugin.h:$(GLSRC)gsiparam.h $(PSSRC)iplugin.h:$(GLSRC)gxhttile.h -$(PSSRC)iplugin.h:$(GLSRC)memento.h -$(PSSRC)iplugin.h:$(GLSRC)gsparam.h -$(PSSRC)iplugin.h:$(GLSRC)gsmatrix.h +$(PSSRC)iplugin.h:$(GLSRC)gsiparam.h $(PSSRC)iplugin.h:$(GLSRC)gxbitmap.h +$(PSSRC)iplugin.h:$(GLSRC)gsmatrix.h +$(PSSRC)iplugin.h:$(GLSRC)gsrefct.h +$(PSSRC)iplugin.h:$(GLSRC)gsparam.h +$(PSSRC)iplugin.h:$(GLSRC)gsccolor.h $(PSSRC)iplugin.h:$(GLSRC)gsstruct.h $(PSSRC)iplugin.h:$(GLSRC)gxsync.h -$(PSSRC)iplugin.h:$(GLSRC)gscsel.h $(PSSRC)iplugin.h:$(GLSRC)scommon.h +$(PSSRC)iplugin.h:$(GLSRC)memento.h +$(PSSRC)iplugin.h:$(GLSRC)gscsel.h $(PSSRC)iplugin.h:$(GLSRC)gsbitmap.h -$(PSSRC)iplugin.h:$(GLSRC)gsccolor.h $(PSSRC)iplugin.h:$(GLSRC)gsstype.h $(PSSRC)iplugin.h:$(GLSRC)gsmemory.h $(PSSRC)iplugin.h:$(GLSRC)gpsync.h $(PSSRC)iplugin.h:$(GLSRC)gslibctx.h +$(PSSRC)iplugin.h:$(GLSRC)gs_dll_call.h $(PSSRC)iplugin.h:$(GLSRC)gsalloc.h +$(PSSRC)iplugin.h:$(GLSRC)stdio_.h $(PSSRC)iplugin.h:$(GLSRC)gxcindex.h -$(PSSRC)iplugin.h:$(GLSRC)stdint_.h $(PSSRC)iplugin.h:$(GLSRC)gsgstate.h -$(PSSRC)iplugin.h:$(GLSRC)gs_dll_call.h -$(PSSRC)iplugin.h:$(GLSRC)stdio_.h -$(PSSRC)iplugin.h:$(GLSRC)gstypes.h +$(PSSRC)iplugin.h:$(GLSRC)stdint_.h +$(PSSRC)iplugin.h:$(GLSRC)gssprintf.h $(PSSRC)iplugin.h:$(GLSRC)std.h +$(PSSRC)iplugin.h:$(GLSRC)gstypes.h $(PSSRC)iplugin.h:$(GLSRC)stdpre.h $(PSSRC)iplugin.h:$(GLGEN)arch.h -$(PSSRC)iplugin.h:$(GLSRC)gssprintf.h $(PSSRC)ifapi.h:$(PSSRC)iplugin.h $(PSSRC)ifapi.h:$(GLSRC)gxfapi.h $(PSSRC)ifapi.h:$(PSSRC)iref.h $(PSSRC)ifapi.h:$(GLSRC)gxalloc.h -$(PSSRC)ifapi.h:$(GLSRC)gxobj.h $(PSSRC)ifapi.h:$(GLSRC)gstext.h +$(PSSRC)ifapi.h:$(GLSRC)gxobj.h $(PSSRC)ifapi.h:$(GLSRC)gsnamecl.h $(PSSRC)ifapi.h:$(GLSRC)gxcspace.h +$(PSSRC)ifapi.h:$(GLSRC)gsdcolor.h $(PSSRC)ifapi.h:$(GLSRC)gsfont.h -$(PSSRC)ifapi.h:$(GLSRC)gxpath.h -$(PSSRC)ifapi.h:$(GLSRC)gspenum.h $(PSSRC)ifapi.h:$(GLSRC)gxfrac.h -$(PSSRC)ifapi.h:$(GLSRC)gslparam.h -$(PSSRC)ifapi.h:$(GLSRC)gsdcolor.h -$(PSSRC)ifapi.h:$(GLSRC)gsrect.h $(PSSRC)ifapi.h:$(GLSRC)gscms.h -$(PSSRC)ifapi.h:$(GLSRC)gsdevice.h $(PSSRC)ifapi.h:$(GLSRC)gscspace.h +$(PSSRC)ifapi.h:$(GLSRC)gxpath.h +$(PSSRC)ifapi.h:$(GLSRC)gsdevice.h $(PSSRC)ifapi.h:$(GLSRC)gxarith.h +$(PSSRC)ifapi.h:$(GLSRC)gspenum.h +$(PSSRC)ifapi.h:$(GLSRC)gxhttile.h +$(PSSRC)ifapi.h:$(GLSRC)gsrect.h +$(PSSRC)ifapi.h:$(GLSRC)gslparam.h +$(PSSRC)ifapi.h:$(GLSRC)gsiparam.h +$(PSSRC)ifapi.h:$(GLSRC)gxbitmap.h +$(PSSRC)ifapi.h:$(GLSRC)gsmatrix.h +$(PSSRC)ifapi.h:$(GLSRC)gscpm.h $(PSSRC)ifapi.h:$(GLSRC)gxfixed.h $(PSSRC)ifapi.h:$(GLSRC)gsrefct.h -$(PSSRC)ifapi.h:$(GLSRC)gscpm.h -$(PSSRC)ifapi.h:$(GLSRC)gsiparam.h -$(PSSRC)ifapi.h:$(GLSRC)gxhttile.h -$(PSSRC)ifapi.h:$(GLSRC)gp.h -$(PSSRC)ifapi.h:$(GLSRC)memento.h $(PSSRC)ifapi.h:$(GLSRC)gsparam.h -$(PSSRC)ifapi.h:$(GLSRC)gsmatrix.h -$(PSSRC)ifapi.h:$(GLSRC)gxbitmap.h -$(PSSRC)ifapi.h:$(GLSRC)srdline.h +$(PSSRC)ifapi.h:$(GLSRC)gp.h +$(PSSRC)ifapi.h:$(GLSRC)gsccolor.h $(PSSRC)ifapi.h:$(GLSRC)gsstruct.h $(PSSRC)ifapi.h:$(GLSRC)gxsync.h -$(PSSRC)ifapi.h:$(GLSRC)gscsel.h +$(PSSRC)ifapi.h:$(GLSRC)srdline.h $(PSSRC)ifapi.h:$(GLSRC)scommon.h +$(PSSRC)ifapi.h:$(GLSRC)memento.h +$(PSSRC)ifapi.h:$(GLSRC)gscsel.h $(PSSRC)ifapi.h:$(GLSRC)gsbitmap.h -$(PSSRC)ifapi.h:$(GLSRC)gsccolor.h $(PSSRC)ifapi.h:$(GLSRC)gsstype.h +$(PSSRC)ifapi.h:$(GLSRC)stat_.h $(PSSRC)ifapi.h:$(GLSRC)gsmemory.h $(PSSRC)ifapi.h:$(GLSRC)gpsync.h -$(PSSRC)ifapi.h:$(GLSRC)gpgetenv.h $(PSSRC)ifapi.h:$(GLSRC)memory_.h +$(PSSRC)ifapi.h:$(GLSRC)gpgetenv.h $(PSSRC)ifapi.h:$(GLSRC)gslibctx.h $(PSSRC)ifapi.h:$(GLSRC)gscdefs.h +$(PSSRC)ifapi.h:$(GLSRC)gs_dll_call.h $(PSSRC)ifapi.h:$(GLSRC)gsalloc.h +$(PSSRC)ifapi.h:$(GLSRC)stdio_.h $(PSSRC)ifapi.h:$(GLSRC)gxcindex.h -$(PSSRC)ifapi.h:$(GLSRC)stdint_.h $(PSSRC)ifapi.h:$(GLSRC)gsgstate.h +$(PSSRC)ifapi.h:$(GLSRC)stdint_.h +$(PSSRC)ifapi.h:$(GLSRC)gssprintf.h $(PSSRC)ifapi.h:$(GLSRC)gsccode.h -$(PSSRC)ifapi.h:$(GLSRC)gs_dll_call.h -$(PSSRC)ifapi.h:$(GLSRC)stdio_.h -$(PSSRC)ifapi.h:$(GLSRC)gstypes.h $(PSSRC)ifapi.h:$(GLSRC)std.h +$(PSSRC)ifapi.h:$(GLSRC)gstypes.h $(PSSRC)ifapi.h:$(GLSRC)stdpre.h $(PSSRC)ifapi.h:$(GLGEN)arch.h -$(PSSRC)ifapi.h:$(GLSRC)gssprintf.h $(PSSRC)zht2.h:$(GLSRC)gscspace.h -$(PSSRC)zht2.h:$(GLSRC)gsrefct.h $(PSSRC)zht2.h:$(GLSRC)gsiparam.h -$(PSSRC)zht2.h:$(GLSRC)memento.h -$(PSSRC)zht2.h:$(GLSRC)gsmatrix.h $(PSSRC)zht2.h:$(GLSRC)gxbitmap.h +$(PSSRC)zht2.h:$(GLSRC)gsmatrix.h +$(PSSRC)zht2.h:$(GLSRC)gsrefct.h +$(PSSRC)zht2.h:$(GLSRC)gsccolor.h $(PSSRC)zht2.h:$(GLSRC)scommon.h +$(PSSRC)zht2.h:$(GLSRC)memento.h $(PSSRC)zht2.h:$(GLSRC)gsbitmap.h -$(PSSRC)zht2.h:$(GLSRC)gsccolor.h $(PSSRC)zht2.h:$(GLSRC)gsstype.h $(PSSRC)zht2.h:$(GLSRC)gsmemory.h $(PSSRC)zht2.h:$(GLSRC)gslibctx.h -$(PSSRC)zht2.h:$(GLSRC)stdint_.h -$(PSSRC)zht2.h:$(GLSRC)gsgstate.h $(PSSRC)zht2.h:$(GLSRC)gs_dll_call.h $(PSSRC)zht2.h:$(GLSRC)stdio_.h -$(PSSRC)zht2.h:$(GLSRC)gstypes.h +$(PSSRC)zht2.h:$(GLSRC)gsgstate.h +$(PSSRC)zht2.h:$(GLSRC)stdint_.h +$(PSSRC)zht2.h:$(GLSRC)gssprintf.h $(PSSRC)zht2.h:$(GLSRC)std.h +$(PSSRC)zht2.h:$(GLSRC)gstypes.h $(PSSRC)zht2.h:$(GLSRC)stdpre.h $(PSSRC)zht2.h:$(GLGEN)arch.h -$(PSSRC)zht2.h:$(GLSRC)gssprintf.h $(GLSRC)gen_ordered.h:$(GLSRC)stdpre.h $(PSSRC)zchar42.h:$(GLSRC)gxfapi.h $(PSSRC)zchar42.h:$(PSSRC)iref.h $(PSSRC)zchar42.h:$(GLSRC)gxalloc.h -$(PSSRC)zchar42.h:$(GLSRC)gxobj.h $(PSSRC)zchar42.h:$(GLSRC)gstext.h +$(PSSRC)zchar42.h:$(GLSRC)gxobj.h $(PSSRC)zchar42.h:$(GLSRC)gsnamecl.h $(PSSRC)zchar42.h:$(GLSRC)gxcspace.h +$(PSSRC)zchar42.h:$(GLSRC)gsdcolor.h $(PSSRC)zchar42.h:$(GLSRC)gsfont.h -$(PSSRC)zchar42.h:$(GLSRC)gxpath.h -$(PSSRC)zchar42.h:$(GLSRC)gspenum.h $(PSSRC)zchar42.h:$(GLSRC)gxfrac.h -$(PSSRC)zchar42.h:$(GLSRC)gslparam.h -$(PSSRC)zchar42.h:$(GLSRC)gsdcolor.h -$(PSSRC)zchar42.h:$(GLSRC)gsrect.h $(PSSRC)zchar42.h:$(GLSRC)gscms.h -$(PSSRC)zchar42.h:$(GLSRC)gsdevice.h $(PSSRC)zchar42.h:$(GLSRC)gscspace.h +$(PSSRC)zchar42.h:$(GLSRC)gxpath.h +$(PSSRC)zchar42.h:$(GLSRC)gsdevice.h $(PSSRC)zchar42.h:$(GLSRC)gxarith.h +$(PSSRC)zchar42.h:$(GLSRC)gspenum.h +$(PSSRC)zchar42.h:$(GLSRC)gxhttile.h +$(PSSRC)zchar42.h:$(GLSRC)gsrect.h +$(PSSRC)zchar42.h:$(GLSRC)gslparam.h +$(PSSRC)zchar42.h:$(GLSRC)gsiparam.h +$(PSSRC)zchar42.h:$(GLSRC)gxbitmap.h +$(PSSRC)zchar42.h:$(GLSRC)gsmatrix.h +$(PSSRC)zchar42.h:$(GLSRC)gscpm.h $(PSSRC)zchar42.h:$(GLSRC)gxfixed.h $(PSSRC)zchar42.h:$(GLSRC)gsrefct.h -$(PSSRC)zchar42.h:$(GLSRC)gscpm.h -$(PSSRC)zchar42.h:$(GLSRC)gsiparam.h -$(PSSRC)zchar42.h:$(GLSRC)gxhttile.h -$(PSSRC)zchar42.h:$(GLSRC)memento.h $(PSSRC)zchar42.h:$(GLSRC)gsparam.h -$(PSSRC)zchar42.h:$(GLSRC)gsmatrix.h -$(PSSRC)zchar42.h:$(GLSRC)gxbitmap.h +$(PSSRC)zchar42.h:$(GLSRC)gsccolor.h $(PSSRC)zchar42.h:$(GLSRC)gsstruct.h $(PSSRC)zchar42.h:$(GLSRC)gxsync.h -$(PSSRC)zchar42.h:$(GLSRC)gscsel.h $(PSSRC)zchar42.h:$(GLSRC)scommon.h +$(PSSRC)zchar42.h:$(GLSRC)memento.h +$(PSSRC)zchar42.h:$(GLSRC)gscsel.h $(PSSRC)zchar42.h:$(GLSRC)gsbitmap.h -$(PSSRC)zchar42.h:$(GLSRC)gsccolor.h $(PSSRC)zchar42.h:$(GLSRC)gsstype.h $(PSSRC)zchar42.h:$(GLSRC)gsmemory.h $(PSSRC)zchar42.h:$(GLSRC)gpsync.h $(PSSRC)zchar42.h:$(GLSRC)gslibctx.h +$(PSSRC)zchar42.h:$(GLSRC)gs_dll_call.h $(PSSRC)zchar42.h:$(GLSRC)gsalloc.h +$(PSSRC)zchar42.h:$(GLSRC)stdio_.h $(PSSRC)zchar42.h:$(GLSRC)gxcindex.h -$(PSSRC)zchar42.h:$(GLSRC)stdint_.h $(PSSRC)zchar42.h:$(GLSRC)gsgstate.h +$(PSSRC)zchar42.h:$(GLSRC)stdint_.h +$(PSSRC)zchar42.h:$(GLSRC)gssprintf.h $(PSSRC)zchar42.h:$(GLSRC)gsccode.h -$(PSSRC)zchar42.h:$(GLSRC)gs_dll_call.h -$(PSSRC)zchar42.h:$(GLSRC)stdio_.h -$(PSSRC)zchar42.h:$(GLSRC)gstypes.h $(PSSRC)zchar42.h:$(GLSRC)std.h +$(PSSRC)zchar42.h:$(GLSRC)gstypes.h $(PSSRC)zchar42.h:$(GLSRC)stdpre.h $(PSSRC)zchar42.h:$(GLGEN)arch.h -$(PSSRC)zchar42.h:$(GLSRC)gssprintf.h $(PSSRC)zfunc.h:$(PSSRC)iref.h $(PSSRC)zfunc.h:$(GLSRC)gxalloc.h $(PSSRC)zfunc.h:$(GLSRC)gxobj.h -$(PSSRC)zfunc.h:$(GLSRC)gsfunc.h $(PSSRC)zfunc.h:$(GLSRC)gsnamecl.h $(PSSRC)zfunc.h:$(GLSRC)gxcspace.h -$(PSSRC)zfunc.h:$(GLSRC)gxfrac.h +$(PSSRC)zfunc.h:$(GLSRC)gsfunc.h $(PSSRC)zfunc.h:$(GLSRC)gsdcolor.h +$(PSSRC)zfunc.h:$(GLSRC)gxfrac.h $(PSSRC)zfunc.h:$(GLSRC)gscms.h -$(PSSRC)zfunc.h:$(GLSRC)gsdevice.h $(PSSRC)zfunc.h:$(GLSRC)gscspace.h +$(PSSRC)zfunc.h:$(GLSRC)gsdevice.h $(PSSRC)zfunc.h:$(GLSRC)gxarith.h +$(PSSRC)zfunc.h:$(GLSRC)gxhttile.h +$(PSSRC)zfunc.h:$(GLSRC)gsiparam.h $(PSSRC)zfunc.h:$(GLSRC)gsdsrc.h +$(PSSRC)zfunc.h:$(GLSRC)gxbitmap.h +$(PSSRC)zfunc.h:$(GLSRC)gsmatrix.h $(PSSRC)zfunc.h:$(GLSRC)gsrefct.h -$(PSSRC)zfunc.h:$(GLSRC)gsiparam.h -$(PSSRC)zfunc.h:$(GLSRC)gxhttile.h -$(PSSRC)zfunc.h:$(GLSRC)memento.h $(PSSRC)zfunc.h:$(GLSRC)gsparam.h -$(PSSRC)zfunc.h:$(GLSRC)gsmatrix.h -$(PSSRC)zfunc.h:$(GLSRC)gxbitmap.h +$(PSSRC)zfunc.h:$(GLSRC)gsccolor.h $(PSSRC)zfunc.h:$(GLSRC)gsstruct.h $(PSSRC)zfunc.h:$(GLSRC)gxsync.h -$(PSSRC)zfunc.h:$(GLSRC)gscsel.h $(PSSRC)zfunc.h:$(GLSRC)scommon.h +$(PSSRC)zfunc.h:$(GLSRC)memento.h +$(PSSRC)zfunc.h:$(GLSRC)gscsel.h $(PSSRC)zfunc.h:$(GLSRC)gsbitmap.h -$(PSSRC)zfunc.h:$(GLSRC)gsccolor.h $(PSSRC)zfunc.h:$(GLSRC)gsstype.h $(PSSRC)zfunc.h:$(GLSRC)gsmemory.h $(PSSRC)zfunc.h:$(GLSRC)gpsync.h $(PSSRC)zfunc.h:$(GLSRC)gslibctx.h +$(PSSRC)zfunc.h:$(GLSRC)gs_dll_call.h $(PSSRC)zfunc.h:$(GLSRC)gsalloc.h +$(PSSRC)zfunc.h:$(GLSRC)stdio_.h $(PSSRC)zfunc.h:$(GLSRC)gxcindex.h -$(PSSRC)zfunc.h:$(GLSRC)stdint_.h $(PSSRC)zfunc.h:$(GLSRC)gsgstate.h -$(PSSRC)zfunc.h:$(GLSRC)gs_dll_call.h -$(PSSRC)zfunc.h:$(GLSRC)stdio_.h -$(PSSRC)zfunc.h:$(GLSRC)gstypes.h +$(PSSRC)zfunc.h:$(GLSRC)stdint_.h +$(PSSRC)zfunc.h:$(GLSRC)gssprintf.h $(PSSRC)zfunc.h:$(GLSRC)std.h +$(PSSRC)zfunc.h:$(GLSRC)gstypes.h $(PSSRC)zfunc.h:$(GLSRC)stdpre.h $(PSSRC)zfunc.h:$(GLGEN)arch.h -$(PSSRC)zfunc.h:$(GLSRC)gssprintf.h $(PSSRC)idparam.h:$(PSSRC)iref.h $(PSSRC)idparam.h:$(GLSRC)gxalloc.h $(PSSRC)idparam.h:$(GLSRC)gxobj.h $(PSSRC)idparam.h:$(GLSRC)gsnamecl.h $(PSSRC)idparam.h:$(GLSRC)gxcspace.h -$(PSSRC)idparam.h:$(GLSRC)gxfrac.h +$(PSSRC)idparam.h:$(GLSRC)gsuid.h $(PSSRC)idparam.h:$(GLSRC)gsdcolor.h +$(PSSRC)idparam.h:$(GLSRC)gxfrac.h $(PSSRC)idparam.h:$(GLSRC)gscms.h -$(PSSRC)idparam.h:$(GLSRC)gsdevice.h $(PSSRC)idparam.h:$(GLSRC)gscspace.h -$(PSSRC)idparam.h:$(GLSRC)gsuid.h +$(PSSRC)idparam.h:$(GLSRC)gsdevice.h $(PSSRC)idparam.h:$(GLSRC)gxarith.h -$(PSSRC)idparam.h:$(GLSRC)gsrefct.h -$(PSSRC)idparam.h:$(GLSRC)gsiparam.h $(PSSRC)idparam.h:$(GLSRC)gxhttile.h -$(PSSRC)idparam.h:$(GLSRC)memento.h -$(PSSRC)idparam.h:$(GLSRC)gsparam.h -$(PSSRC)idparam.h:$(GLSRC)gsmatrix.h +$(PSSRC)idparam.h:$(GLSRC)gsiparam.h $(PSSRC)idparam.h:$(GLSRC)gxbitmap.h +$(PSSRC)idparam.h:$(GLSRC)gsmatrix.h +$(PSSRC)idparam.h:$(GLSRC)gsrefct.h +$(PSSRC)idparam.h:$(GLSRC)gsparam.h +$(PSSRC)idparam.h:$(GLSRC)gsccolor.h $(PSSRC)idparam.h:$(GLSRC)gsstruct.h $(PSSRC)idparam.h:$(GLSRC)gxsync.h -$(PSSRC)idparam.h:$(GLSRC)gscsel.h $(PSSRC)idparam.h:$(GLSRC)scommon.h +$(PSSRC)idparam.h:$(GLSRC)memento.h +$(PSSRC)idparam.h:$(GLSRC)gscsel.h $(PSSRC)idparam.h:$(GLSRC)gsbitmap.h -$(PSSRC)idparam.h:$(GLSRC)gsccolor.h $(PSSRC)idparam.h:$(GLSRC)gsstype.h $(PSSRC)idparam.h:$(GLSRC)gsmemory.h $(PSSRC)idparam.h:$(GLSRC)gpsync.h $(PSSRC)idparam.h:$(GLSRC)gslibctx.h +$(PSSRC)idparam.h:$(GLSRC)gs_dll_call.h $(PSSRC)idparam.h:$(GLSRC)gsalloc.h +$(PSSRC)idparam.h:$(GLSRC)stdio_.h $(PSSRC)idparam.h:$(GLSRC)gxcindex.h -$(PSSRC)idparam.h:$(GLSRC)stdint_.h $(PSSRC)idparam.h:$(GLSRC)gsgstate.h -$(PSSRC)idparam.h:$(GLSRC)gs_dll_call.h -$(PSSRC)idparam.h:$(GLSRC)stdio_.h -$(PSSRC)idparam.h:$(GLSRC)gstypes.h +$(PSSRC)idparam.h:$(GLSRC)stdint_.h +$(PSSRC)idparam.h:$(GLSRC)gssprintf.h $(PSSRC)idparam.h:$(GLSRC)std.h +$(PSSRC)idparam.h:$(GLSRC)gstypes.h $(PSSRC)idparam.h:$(GLSRC)stdpre.h $(PSSRC)idparam.h:$(GLGEN)arch.h -$(PSSRC)idparam.h:$(GLSRC)gssprintf.h $(PSSRC)ilevel.h:$(PSSRC)imemory.h $(PSSRC)ilevel.h:$(PSSRC)ivmspace.h $(PSSRC)ilevel.h:$(PSSRC)iref.h -$(PSSRC)ilevel.h:$(GLSRC)gxalloc.h $(PSSRC)ilevel.h:$(GLSRC)gsgc.h +$(PSSRC)ilevel.h:$(GLSRC)gxalloc.h $(PSSRC)ilevel.h:$(GLSRC)gxobj.h $(PSSRC)ilevel.h:$(GLSRC)gsnamecl.h $(PSSRC)ilevel.h:$(GLSRC)gxcspace.h -$(PSSRC)ilevel.h:$(GLSRC)gxfrac.h $(PSSRC)ilevel.h:$(GLSRC)gsdcolor.h +$(PSSRC)ilevel.h:$(GLSRC)gxfrac.h $(PSSRC)ilevel.h:$(GLSRC)gscms.h -$(PSSRC)ilevel.h:$(GLSRC)gsdevice.h $(PSSRC)ilevel.h:$(GLSRC)gscspace.h +$(PSSRC)ilevel.h:$(GLSRC)gsdevice.h $(PSSRC)ilevel.h:$(GLSRC)gxarith.h -$(PSSRC)ilevel.h:$(GLSRC)gsrefct.h -$(PSSRC)ilevel.h:$(GLSRC)gsiparam.h $(PSSRC)ilevel.h:$(GLSRC)gxhttile.h -$(PSSRC)ilevel.h:$(GLSRC)memento.h -$(PSSRC)ilevel.h:$(GLSRC)gsparam.h -$(PSSRC)ilevel.h:$(GLSRC)gsmatrix.h +$(PSSRC)ilevel.h:$(GLSRC)gsiparam.h $(PSSRC)ilevel.h:$(GLSRC)gxbitmap.h +$(PSSRC)ilevel.h:$(GLSRC)gsmatrix.h +$(PSSRC)ilevel.h:$(GLSRC)gsrefct.h +$(PSSRC)ilevel.h:$(GLSRC)gsparam.h +$(PSSRC)ilevel.h:$(GLSRC)gsccolor.h $(PSSRC)ilevel.h:$(GLSRC)gsstruct.h $(PSSRC)ilevel.h:$(GLSRC)gxsync.h -$(PSSRC)ilevel.h:$(GLSRC)gscsel.h $(PSSRC)ilevel.h:$(GLSRC)scommon.h +$(PSSRC)ilevel.h:$(GLSRC)memento.h +$(PSSRC)ilevel.h:$(GLSRC)gscsel.h $(PSSRC)ilevel.h:$(GLSRC)gsbitmap.h -$(PSSRC)ilevel.h:$(GLSRC)gsccolor.h $(PSSRC)ilevel.h:$(GLSRC)gsstype.h $(PSSRC)ilevel.h:$(GLSRC)gsmemory.h $(PSSRC)ilevel.h:$(GLSRC)gpsync.h $(PSSRC)ilevel.h:$(GLSRC)gslibctx.h +$(PSSRC)ilevel.h:$(GLSRC)gs_dll_call.h $(PSSRC)ilevel.h:$(GLSRC)gsalloc.h +$(PSSRC)ilevel.h:$(GLSRC)stdio_.h $(PSSRC)ilevel.h:$(GLSRC)gxcindex.h -$(PSSRC)ilevel.h:$(GLSRC)stdint_.h $(PSSRC)ilevel.h:$(GLSRC)gsgstate.h -$(PSSRC)ilevel.h:$(GLSRC)gs_dll_call.h -$(PSSRC)ilevel.h:$(GLSRC)stdio_.h -$(PSSRC)ilevel.h:$(GLSRC)gstypes.h +$(PSSRC)ilevel.h:$(GLSRC)stdint_.h +$(PSSRC)ilevel.h:$(GLSRC)gssprintf.h $(PSSRC)ilevel.h:$(GLSRC)std.h +$(PSSRC)ilevel.h:$(GLSRC)gstypes.h $(PSSRC)ilevel.h:$(GLSRC)stdpre.h $(PSSRC)ilevel.h:$(GLGEN)arch.h -$(PSSRC)ilevel.h:$(GLSRC)gssprintf.h $(PSSRC)interp.h:$(PSSRC)imemory.h $(PSSRC)interp.h:$(PSSRC)ivmspace.h $(PSSRC)interp.h:$(PSSRC)iref.h -$(PSSRC)interp.h:$(GLSRC)gxalloc.h $(PSSRC)interp.h:$(GLSRC)gsgc.h +$(PSSRC)interp.h:$(GLSRC)gxalloc.h $(PSSRC)interp.h:$(GLSRC)gxobj.h $(PSSRC)interp.h:$(GLSRC)gsnamecl.h $(PSSRC)interp.h:$(GLSRC)gxcspace.h -$(PSSRC)interp.h:$(GLSRC)gxfrac.h $(PSSRC)interp.h:$(GLSRC)gsdcolor.h +$(PSSRC)interp.h:$(GLSRC)gxfrac.h $(PSSRC)interp.h:$(GLSRC)gscms.h -$(PSSRC)interp.h:$(GLSRC)gsdevice.h $(PSSRC)interp.h:$(GLSRC)gscspace.h +$(PSSRC)interp.h:$(GLSRC)gsdevice.h $(PSSRC)interp.h:$(GLSRC)gxarith.h -$(PSSRC)interp.h:$(GLSRC)gsrefct.h -$(PSSRC)interp.h:$(GLSRC)gsiparam.h $(PSSRC)interp.h:$(GLSRC)gxhttile.h -$(PSSRC)interp.h:$(GLSRC)memento.h -$(PSSRC)interp.h:$(GLSRC)gsparam.h -$(PSSRC)interp.h:$(GLSRC)gsmatrix.h +$(PSSRC)interp.h:$(GLSRC)gsiparam.h $(PSSRC)interp.h:$(GLSRC)gxbitmap.h +$(PSSRC)interp.h:$(GLSRC)gsmatrix.h +$(PSSRC)interp.h:$(GLSRC)gsrefct.h +$(PSSRC)interp.h:$(GLSRC)gsparam.h +$(PSSRC)interp.h:$(GLSRC)gsccolor.h $(PSSRC)interp.h:$(GLSRC)gsstruct.h $(PSSRC)interp.h:$(GLSRC)gxsync.h -$(PSSRC)interp.h:$(GLSRC)gscsel.h $(PSSRC)interp.h:$(GLSRC)scommon.h +$(PSSRC)interp.h:$(GLSRC)memento.h +$(PSSRC)interp.h:$(GLSRC)gscsel.h $(PSSRC)interp.h:$(GLSRC)gsbitmap.h -$(PSSRC)interp.h:$(GLSRC)gsccolor.h $(PSSRC)interp.h:$(GLSRC)gsstype.h $(PSSRC)interp.h:$(GLSRC)gsmemory.h $(PSSRC)interp.h:$(GLSRC)gpsync.h $(PSSRC)interp.h:$(GLSRC)gslibctx.h +$(PSSRC)interp.h:$(GLSRC)gs_dll_call.h $(PSSRC)interp.h:$(GLSRC)gsalloc.h +$(PSSRC)interp.h:$(GLSRC)stdio_.h $(PSSRC)interp.h:$(GLSRC)gxcindex.h -$(PSSRC)interp.h:$(GLSRC)stdint_.h $(PSSRC)interp.h:$(GLSRC)gsgstate.h -$(PSSRC)interp.h:$(GLSRC)gs_dll_call.h -$(PSSRC)interp.h:$(GLSRC)stdio_.h -$(PSSRC)interp.h:$(GLSRC)gstypes.h +$(PSSRC)interp.h:$(GLSRC)stdint_.h +$(PSSRC)interp.h:$(GLSRC)gssprintf.h $(PSSRC)interp.h:$(GLSRC)std.h +$(PSSRC)interp.h:$(GLSRC)gstypes.h $(PSSRC)interp.h:$(GLSRC)stdpre.h $(PSSRC)interp.h:$(GLGEN)arch.h -$(PSSRC)interp.h:$(GLSRC)gssprintf.h $(PSSRC)iparam.h:$(PSSRC)isdata.h $(PSSRC)iparam.h:$(PSSRC)imemory.h $(PSSRC)iparam.h:$(PSSRC)ivmspace.h $(PSSRC)iparam.h:$(PSSRC)iref.h -$(PSSRC)iparam.h:$(GLSRC)gxalloc.h $(PSSRC)iparam.h:$(GLSRC)gsgc.h +$(PSSRC)iparam.h:$(GLSRC)gxalloc.h $(PSSRC)iparam.h:$(GLSRC)gxobj.h $(PSSRC)iparam.h:$(GLSRC)gsnamecl.h $(PSSRC)iparam.h:$(GLSRC)gxcspace.h -$(PSSRC)iparam.h:$(GLSRC)gxfrac.h $(PSSRC)iparam.h:$(GLSRC)gsdcolor.h +$(PSSRC)iparam.h:$(GLSRC)gxfrac.h $(PSSRC)iparam.h:$(GLSRC)gscms.h -$(PSSRC)iparam.h:$(GLSRC)gsdevice.h $(PSSRC)iparam.h:$(GLSRC)gscspace.h +$(PSSRC)iparam.h:$(GLSRC)gsdevice.h $(PSSRC)iparam.h:$(GLSRC)gxarith.h -$(PSSRC)iparam.h:$(GLSRC)gsrefct.h -$(PSSRC)iparam.h:$(GLSRC)gsiparam.h $(PSSRC)iparam.h:$(GLSRC)gxhttile.h -$(PSSRC)iparam.h:$(GLSRC)memento.h -$(PSSRC)iparam.h:$(GLSRC)gsparam.h -$(PSSRC)iparam.h:$(GLSRC)gsmatrix.h +$(PSSRC)iparam.h:$(GLSRC)gsiparam.h $(PSSRC)iparam.h:$(GLSRC)gxbitmap.h +$(PSSRC)iparam.h:$(GLSRC)gsmatrix.h +$(PSSRC)iparam.h:$(GLSRC)gsrefct.h +$(PSSRC)iparam.h:$(GLSRC)gsparam.h +$(PSSRC)iparam.h:$(GLSRC)gsccolor.h $(PSSRC)iparam.h:$(GLSRC)gsstruct.h $(PSSRC)iparam.h:$(GLSRC)gxsync.h -$(PSSRC)iparam.h:$(GLSRC)gscsel.h $(PSSRC)iparam.h:$(GLSRC)scommon.h +$(PSSRC)iparam.h:$(GLSRC)memento.h +$(PSSRC)iparam.h:$(GLSRC)gscsel.h $(PSSRC)iparam.h:$(GLSRC)gsbitmap.h -$(PSSRC)iparam.h:$(GLSRC)gsccolor.h $(PSSRC)iparam.h:$(GLSRC)gsstype.h $(PSSRC)iparam.h:$(GLSRC)gsmemory.h $(PSSRC)iparam.h:$(GLSRC)gpsync.h $(PSSRC)iparam.h:$(GLSRC)gslibctx.h +$(PSSRC)iparam.h:$(GLSRC)gs_dll_call.h $(PSSRC)iparam.h:$(GLSRC)gsalloc.h +$(PSSRC)iparam.h:$(GLSRC)stdio_.h $(PSSRC)iparam.h:$(GLSRC)gxcindex.h -$(PSSRC)iparam.h:$(GLSRC)stdint_.h $(PSSRC)iparam.h:$(GLSRC)gsgstate.h -$(PSSRC)iparam.h:$(GLSRC)gs_dll_call.h -$(PSSRC)iparam.h:$(GLSRC)stdio_.h -$(PSSRC)iparam.h:$(GLSRC)gstypes.h +$(PSSRC)iparam.h:$(GLSRC)stdint_.h +$(PSSRC)iparam.h:$(GLSRC)gssprintf.h $(PSSRC)iparam.h:$(GLSRC)std.h +$(PSSRC)iparam.h:$(GLSRC)gstypes.h $(PSSRC)iparam.h:$(GLSRC)stdpre.h $(PSSRC)iparam.h:$(GLGEN)arch.h -$(PSSRC)iparam.h:$(GLSRC)gssprintf.h $(PSSRC)isdata.h:$(PSSRC)imemory.h $(PSSRC)isdata.h:$(PSSRC)ivmspace.h $(PSSRC)isdata.h:$(PSSRC)iref.h -$(PSSRC)isdata.h:$(GLSRC)gxalloc.h $(PSSRC)isdata.h:$(GLSRC)gsgc.h +$(PSSRC)isdata.h:$(GLSRC)gxalloc.h $(PSSRC)isdata.h:$(GLSRC)gxobj.h $(PSSRC)isdata.h:$(GLSRC)gsnamecl.h $(PSSRC)isdata.h:$(GLSRC)gxcspace.h -$(PSSRC)isdata.h:$(GLSRC)gxfrac.h $(PSSRC)isdata.h:$(GLSRC)gsdcolor.h +$(PSSRC)isdata.h:$(GLSRC)gxfrac.h $(PSSRC)isdata.h:$(GLSRC)gscms.h -$(PSSRC)isdata.h:$(GLSRC)gsdevice.h $(PSSRC)isdata.h:$(GLSRC)gscspace.h +$(PSSRC)isdata.h:$(GLSRC)gsdevice.h $(PSSRC)isdata.h:$(GLSRC)gxarith.h -$(PSSRC)isdata.h:$(GLSRC)gsrefct.h -$(PSSRC)isdata.h:$(GLSRC)gsiparam.h $(PSSRC)isdata.h:$(GLSRC)gxhttile.h -$(PSSRC)isdata.h:$(GLSRC)memento.h -$(PSSRC)isdata.h:$(GLSRC)gsparam.h -$(PSSRC)isdata.h:$(GLSRC)gsmatrix.h +$(PSSRC)isdata.h:$(GLSRC)gsiparam.h $(PSSRC)isdata.h:$(GLSRC)gxbitmap.h +$(PSSRC)isdata.h:$(GLSRC)gsmatrix.h +$(PSSRC)isdata.h:$(GLSRC)gsrefct.h +$(PSSRC)isdata.h:$(GLSRC)gsparam.h +$(PSSRC)isdata.h:$(GLSRC)gsccolor.h $(PSSRC)isdata.h:$(GLSRC)gsstruct.h $(PSSRC)isdata.h:$(GLSRC)gxsync.h -$(PSSRC)isdata.h:$(GLSRC)gscsel.h $(PSSRC)isdata.h:$(GLSRC)scommon.h +$(PSSRC)isdata.h:$(GLSRC)memento.h +$(PSSRC)isdata.h:$(GLSRC)gscsel.h $(PSSRC)isdata.h:$(GLSRC)gsbitmap.h -$(PSSRC)isdata.h:$(GLSRC)gsccolor.h $(PSSRC)isdata.h:$(GLSRC)gsstype.h $(PSSRC)isdata.h:$(GLSRC)gsmemory.h $(PSSRC)isdata.h:$(GLSRC)gpsync.h $(PSSRC)isdata.h:$(GLSRC)gslibctx.h +$(PSSRC)isdata.h:$(GLSRC)gs_dll_call.h $(PSSRC)isdata.h:$(GLSRC)gsalloc.h +$(PSSRC)isdata.h:$(GLSRC)stdio_.h $(PSSRC)isdata.h:$(GLSRC)gxcindex.h -$(PSSRC)isdata.h:$(GLSRC)stdint_.h $(PSSRC)isdata.h:$(GLSRC)gsgstate.h -$(PSSRC)isdata.h:$(GLSRC)gs_dll_call.h -$(PSSRC)isdata.h:$(GLSRC)stdio_.h -$(PSSRC)isdata.h:$(GLSRC)gstypes.h +$(PSSRC)isdata.h:$(GLSRC)stdint_.h +$(PSSRC)isdata.h:$(GLSRC)gssprintf.h $(PSSRC)isdata.h:$(GLSRC)std.h +$(PSSRC)isdata.h:$(GLSRC)gstypes.h $(PSSRC)isdata.h:$(GLSRC)stdpre.h $(PSSRC)isdata.h:$(GLGEN)arch.h -$(PSSRC)isdata.h:$(GLSRC)gssprintf.h $(PSSRC)istack.h:$(PSSRC)isdata.h $(PSSRC)istack.h:$(PSSRC)imemory.h $(PSSRC)istack.h:$(PSSRC)ivmspace.h $(PSSRC)istack.h:$(PSSRC)iref.h -$(PSSRC)istack.h:$(GLSRC)gxalloc.h $(PSSRC)istack.h:$(GLSRC)gsgc.h +$(PSSRC)istack.h:$(GLSRC)gxalloc.h $(PSSRC)istack.h:$(GLSRC)gxobj.h $(PSSRC)istack.h:$(GLSRC)gsnamecl.h $(PSSRC)istack.h:$(GLSRC)gxcspace.h -$(PSSRC)istack.h:$(GLSRC)gxfrac.h $(PSSRC)istack.h:$(GLSRC)gsdcolor.h +$(PSSRC)istack.h:$(GLSRC)gxfrac.h $(PSSRC)istack.h:$(GLSRC)gscms.h -$(PSSRC)istack.h:$(GLSRC)gsdevice.h $(PSSRC)istack.h:$(GLSRC)gscspace.h +$(PSSRC)istack.h:$(GLSRC)gsdevice.h $(PSSRC)istack.h:$(GLSRC)gxarith.h -$(PSSRC)istack.h:$(GLSRC)gsrefct.h -$(PSSRC)istack.h:$(GLSRC)gsiparam.h $(PSSRC)istack.h:$(GLSRC)gxhttile.h -$(PSSRC)istack.h:$(GLSRC)memento.h -$(PSSRC)istack.h:$(GLSRC)gsparam.h -$(PSSRC)istack.h:$(GLSRC)gsmatrix.h +$(PSSRC)istack.h:$(GLSRC)gsiparam.h $(PSSRC)istack.h:$(GLSRC)gxbitmap.h +$(PSSRC)istack.h:$(GLSRC)gsmatrix.h +$(PSSRC)istack.h:$(GLSRC)gsrefct.h +$(PSSRC)istack.h:$(GLSRC)gsparam.h +$(PSSRC)istack.h:$(GLSRC)gsccolor.h $(PSSRC)istack.h:$(GLSRC)gsstruct.h $(PSSRC)istack.h:$(GLSRC)gxsync.h -$(PSSRC)istack.h:$(GLSRC)gscsel.h $(PSSRC)istack.h:$(GLSRC)scommon.h +$(PSSRC)istack.h:$(GLSRC)memento.h +$(PSSRC)istack.h:$(GLSRC)gscsel.h $(PSSRC)istack.h:$(GLSRC)gsbitmap.h -$(PSSRC)istack.h:$(GLSRC)gsccolor.h $(PSSRC)istack.h:$(GLSRC)gsstype.h $(PSSRC)istack.h:$(GLSRC)gsmemory.h $(PSSRC)istack.h:$(GLSRC)gpsync.h $(PSSRC)istack.h:$(GLSRC)gslibctx.h +$(PSSRC)istack.h:$(GLSRC)gs_dll_call.h $(PSSRC)istack.h:$(GLSRC)gsalloc.h +$(PSSRC)istack.h:$(GLSRC)stdio_.h $(PSSRC)istack.h:$(GLSRC)gxcindex.h -$(PSSRC)istack.h:$(GLSRC)stdint_.h $(PSSRC)istack.h:$(GLSRC)gsgstate.h -$(PSSRC)istack.h:$(GLSRC)gs_dll_call.h -$(PSSRC)istack.h:$(GLSRC)stdio_.h -$(PSSRC)istack.h:$(GLSRC)gstypes.h +$(PSSRC)istack.h:$(GLSRC)stdint_.h +$(PSSRC)istack.h:$(GLSRC)gssprintf.h $(PSSRC)istack.h:$(GLSRC)std.h +$(PSSRC)istack.h:$(GLSRC)gstypes.h $(PSSRC)istack.h:$(GLSRC)stdpre.h $(PSSRC)istack.h:$(GLGEN)arch.h -$(PSSRC)istack.h:$(GLSRC)gssprintf.h $(PSSRC)istkparm.h:$(PSSRC)iref.h $(PSSRC)istkparm.h:$(GLSRC)gxalloc.h $(PSSRC)istkparm.h:$(GLSRC)gxobj.h $(PSSRC)istkparm.h:$(GLSRC)gsnamecl.h $(PSSRC)istkparm.h:$(GLSRC)gxcspace.h -$(PSSRC)istkparm.h:$(GLSRC)gxfrac.h $(PSSRC)istkparm.h:$(GLSRC)gsdcolor.h +$(PSSRC)istkparm.h:$(GLSRC)gxfrac.h $(PSSRC)istkparm.h:$(GLSRC)gscms.h -$(PSSRC)istkparm.h:$(GLSRC)gsdevice.h $(PSSRC)istkparm.h:$(GLSRC)gscspace.h +$(PSSRC)istkparm.h:$(GLSRC)gsdevice.h $(PSSRC)istkparm.h:$(GLSRC)gxarith.h -$(PSSRC)istkparm.h:$(GLSRC)gsrefct.h -$(PSSRC)istkparm.h:$(GLSRC)gsiparam.h $(PSSRC)istkparm.h:$(GLSRC)gxhttile.h -$(PSSRC)istkparm.h:$(GLSRC)memento.h -$(PSSRC)istkparm.h:$(GLSRC)gsparam.h -$(PSSRC)istkparm.h:$(GLSRC)gsmatrix.h +$(PSSRC)istkparm.h:$(GLSRC)gsiparam.h $(PSSRC)istkparm.h:$(GLSRC)gxbitmap.h +$(PSSRC)istkparm.h:$(GLSRC)gsmatrix.h +$(PSSRC)istkparm.h:$(GLSRC)gsrefct.h +$(PSSRC)istkparm.h:$(GLSRC)gsparam.h +$(PSSRC)istkparm.h:$(GLSRC)gsccolor.h $(PSSRC)istkparm.h:$(GLSRC)gsstruct.h $(PSSRC)istkparm.h:$(GLSRC)gxsync.h -$(PSSRC)istkparm.h:$(GLSRC)gscsel.h $(PSSRC)istkparm.h:$(GLSRC)scommon.h +$(PSSRC)istkparm.h:$(GLSRC)memento.h +$(PSSRC)istkparm.h:$(GLSRC)gscsel.h $(PSSRC)istkparm.h:$(GLSRC)gsbitmap.h -$(PSSRC)istkparm.h:$(GLSRC)gsccolor.h $(PSSRC)istkparm.h:$(GLSRC)gsstype.h $(PSSRC)istkparm.h:$(GLSRC)gsmemory.h $(PSSRC)istkparm.h:$(GLSRC)gpsync.h $(PSSRC)istkparm.h:$(GLSRC)gslibctx.h +$(PSSRC)istkparm.h:$(GLSRC)gs_dll_call.h $(PSSRC)istkparm.h:$(GLSRC)gsalloc.h +$(PSSRC)istkparm.h:$(GLSRC)stdio_.h $(PSSRC)istkparm.h:$(GLSRC)gxcindex.h -$(PSSRC)istkparm.h:$(GLSRC)stdint_.h $(PSSRC)istkparm.h:$(GLSRC)gsgstate.h -$(PSSRC)istkparm.h:$(GLSRC)gs_dll_call.h -$(PSSRC)istkparm.h:$(GLSRC)stdio_.h -$(PSSRC)istkparm.h:$(GLSRC)gstypes.h +$(PSSRC)istkparm.h:$(GLSRC)stdint_.h +$(PSSRC)istkparm.h:$(GLSRC)gssprintf.h $(PSSRC)istkparm.h:$(GLSRC)std.h +$(PSSRC)istkparm.h:$(GLSRC)gstypes.h $(PSSRC)istkparm.h:$(GLSRC)stdpre.h $(PSSRC)istkparm.h:$(GLGEN)arch.h -$(PSSRC)istkparm.h:$(GLSRC)gssprintf.h $(PSSRC)iutil2.h:$(PSSRC)iref.h $(PSSRC)iutil2.h:$(GLSRC)gxalloc.h $(PSSRC)iutil2.h:$(GLSRC)gxobj.h -$(PSSRC)iutil2.h:$(GLSRC)gsfunc.h $(PSSRC)iutil2.h:$(GLSRC)gsnamecl.h $(PSSRC)iutil2.h:$(GLSRC)gxcspace.h -$(PSSRC)iutil2.h:$(GLSRC)gxfrac.h +$(PSSRC)iutil2.h:$(GLSRC)gsfunc.h $(PSSRC)iutil2.h:$(GLSRC)gsdcolor.h +$(PSSRC)iutil2.h:$(GLSRC)gxfrac.h $(PSSRC)iutil2.h:$(GLSRC)gscms.h -$(PSSRC)iutil2.h:$(GLSRC)gsdevice.h $(PSSRC)iutil2.h:$(GLSRC)gscspace.h +$(PSSRC)iutil2.h:$(GLSRC)gsdevice.h $(PSSRC)iutil2.h:$(GLSRC)gxarith.h +$(PSSRC)iutil2.h:$(GLSRC)gxhttile.h +$(PSSRC)iutil2.h:$(GLSRC)gsiparam.h $(PSSRC)iutil2.h:$(GLSRC)gsdsrc.h +$(PSSRC)iutil2.h:$(GLSRC)gxbitmap.h +$(PSSRC)iutil2.h:$(GLSRC)gsmatrix.h $(PSSRC)iutil2.h:$(GLSRC)gsrefct.h -$(PSSRC)iutil2.h:$(GLSRC)gsiparam.h -$(PSSRC)iutil2.h:$(GLSRC)gxhttile.h -$(PSSRC)iutil2.h:$(GLSRC)memento.h $(PSSRC)iutil2.h:$(GLSRC)gsparam.h -$(PSSRC)iutil2.h:$(GLSRC)gsmatrix.h -$(PSSRC)iutil2.h:$(GLSRC)gxbitmap.h +$(PSSRC)iutil2.h:$(GLSRC)gsccolor.h $(PSSRC)iutil2.h:$(GLSRC)gsstruct.h $(PSSRC)iutil2.h:$(GLSRC)gxsync.h -$(PSSRC)iutil2.h:$(GLSRC)gscsel.h $(PSSRC)iutil2.h:$(GLSRC)scommon.h +$(PSSRC)iutil2.h:$(GLSRC)memento.h +$(PSSRC)iutil2.h:$(GLSRC)gscsel.h $(PSSRC)iutil2.h:$(GLSRC)gsbitmap.h -$(PSSRC)iutil2.h:$(GLSRC)gsccolor.h $(PSSRC)iutil2.h:$(GLSRC)gsstype.h $(PSSRC)iutil2.h:$(GLSRC)gsmemory.h $(PSSRC)iutil2.h:$(GLSRC)gpsync.h $(PSSRC)iutil2.h:$(GLSRC)gslibctx.h +$(PSSRC)iutil2.h:$(GLSRC)gs_dll_call.h $(PSSRC)iutil2.h:$(GLSRC)gsalloc.h +$(PSSRC)iutil2.h:$(GLSRC)stdio_.h $(PSSRC)iutil2.h:$(GLSRC)gxcindex.h -$(PSSRC)iutil2.h:$(GLSRC)stdint_.h $(PSSRC)iutil2.h:$(GLSRC)gsgstate.h -$(PSSRC)iutil2.h:$(GLSRC)gs_dll_call.h -$(PSSRC)iutil2.h:$(GLSRC)stdio_.h -$(PSSRC)iutil2.h:$(GLSRC)gstypes.h +$(PSSRC)iutil2.h:$(GLSRC)stdint_.h +$(PSSRC)iutil2.h:$(GLSRC)gssprintf.h $(PSSRC)iutil2.h:$(GLSRC)std.h +$(PSSRC)iutil2.h:$(GLSRC)gstypes.h $(PSSRC)iutil2.h:$(GLSRC)stdpre.h $(PSSRC)iutil2.h:$(GLGEN)arch.h -$(PSSRC)iutil2.h:$(GLSRC)gssprintf.h $(PSSRC)oparc.h:$(PSSRC)iref.h $(PSSRC)oparc.h:$(GLSRC)gxalloc.h $(PSSRC)oparc.h:$(GLSRC)gxobj.h $(PSSRC)oparc.h:$(GLSRC)gsnamecl.h $(PSSRC)oparc.h:$(GLSRC)gxcspace.h -$(PSSRC)oparc.h:$(GLSRC)gxfrac.h $(PSSRC)oparc.h:$(GLSRC)gsdcolor.h +$(PSSRC)oparc.h:$(GLSRC)gxfrac.h $(PSSRC)oparc.h:$(GLSRC)gscms.h -$(PSSRC)oparc.h:$(GLSRC)gsdevice.h $(PSSRC)oparc.h:$(GLSRC)gscspace.h +$(PSSRC)oparc.h:$(GLSRC)gsdevice.h $(PSSRC)oparc.h:$(GLSRC)gxarith.h -$(PSSRC)oparc.h:$(GLSRC)gsrefct.h -$(PSSRC)oparc.h:$(GLSRC)gsiparam.h $(PSSRC)oparc.h:$(GLSRC)gxhttile.h -$(PSSRC)oparc.h:$(GLSRC)memento.h -$(PSSRC)oparc.h:$(GLSRC)gsparam.h -$(PSSRC)oparc.h:$(GLSRC)gsmatrix.h +$(PSSRC)oparc.h:$(GLSRC)gsiparam.h $(PSSRC)oparc.h:$(GLSRC)gxbitmap.h +$(PSSRC)oparc.h:$(GLSRC)gsmatrix.h +$(PSSRC)oparc.h:$(GLSRC)gsrefct.h +$(PSSRC)oparc.h:$(GLSRC)gsparam.h +$(PSSRC)oparc.h:$(GLSRC)gsccolor.h $(PSSRC)oparc.h:$(GLSRC)gsstruct.h $(PSSRC)oparc.h:$(GLSRC)gxsync.h -$(PSSRC)oparc.h:$(GLSRC)gscsel.h $(PSSRC)oparc.h:$(GLSRC)scommon.h +$(PSSRC)oparc.h:$(GLSRC)memento.h +$(PSSRC)oparc.h:$(GLSRC)gscsel.h $(PSSRC)oparc.h:$(GLSRC)gsbitmap.h -$(PSSRC)oparc.h:$(GLSRC)gsccolor.h $(PSSRC)oparc.h:$(GLSRC)gsstype.h $(PSSRC)oparc.h:$(GLSRC)gsmemory.h $(PSSRC)oparc.h:$(GLSRC)gpsync.h $(PSSRC)oparc.h:$(GLSRC)gslibctx.h +$(PSSRC)oparc.h:$(GLSRC)gs_dll_call.h $(PSSRC)oparc.h:$(GLSRC)gsalloc.h +$(PSSRC)oparc.h:$(GLSRC)stdio_.h $(PSSRC)oparc.h:$(GLSRC)gxcindex.h -$(PSSRC)oparc.h:$(GLSRC)stdint_.h $(PSSRC)oparc.h:$(GLSRC)gsgstate.h -$(PSSRC)oparc.h:$(GLSRC)gs_dll_call.h -$(PSSRC)oparc.h:$(GLSRC)stdio_.h -$(PSSRC)oparc.h:$(GLSRC)gstypes.h +$(PSSRC)oparc.h:$(GLSRC)stdint_.h +$(PSSRC)oparc.h:$(GLSRC)gssprintf.h $(PSSRC)oparc.h:$(GLSRC)std.h +$(PSSRC)oparc.h:$(GLSRC)gstypes.h $(PSSRC)oparc.h:$(GLSRC)stdpre.h $(PSSRC)oparc.h:$(GLGEN)arch.h -$(PSSRC)oparc.h:$(GLSRC)gssprintf.h $(PSSRC)opcheck.h:$(PSSRC)iref.h $(PSSRC)opcheck.h:$(GLSRC)gxalloc.h $(PSSRC)opcheck.h:$(GLSRC)gxobj.h $(PSSRC)opcheck.h:$(GLSRC)gsnamecl.h $(PSSRC)opcheck.h:$(GLSRC)gxcspace.h -$(PSSRC)opcheck.h:$(GLSRC)gxfrac.h $(PSSRC)opcheck.h:$(GLSRC)gsdcolor.h +$(PSSRC)opcheck.h:$(GLSRC)gxfrac.h $(PSSRC)opcheck.h:$(GLSRC)gscms.h -$(PSSRC)opcheck.h:$(GLSRC)gsdevice.h $(PSSRC)opcheck.h:$(GLSRC)gscspace.h +$(PSSRC)opcheck.h:$(GLSRC)gsdevice.h $(PSSRC)opcheck.h:$(GLSRC)gxarith.h -$(PSSRC)opcheck.h:$(GLSRC)gsrefct.h -$(PSSRC)opcheck.h:$(GLSRC)gsiparam.h $(PSSRC)opcheck.h:$(GLSRC)gxhttile.h -$(PSSRC)opcheck.h:$(GLSRC)memento.h -$(PSSRC)opcheck.h:$(GLSRC)gsparam.h -$(PSSRC)opcheck.h:$(GLSRC)gsmatrix.h +$(PSSRC)opcheck.h:$(GLSRC)gsiparam.h $(PSSRC)opcheck.h:$(GLSRC)gxbitmap.h +$(PSSRC)opcheck.h:$(GLSRC)gsmatrix.h +$(PSSRC)opcheck.h:$(GLSRC)gsrefct.h +$(PSSRC)opcheck.h:$(GLSRC)gsparam.h +$(PSSRC)opcheck.h:$(GLSRC)gsccolor.h $(PSSRC)opcheck.h:$(GLSRC)gsstruct.h $(PSSRC)opcheck.h:$(GLSRC)gxsync.h -$(PSSRC)opcheck.h:$(GLSRC)gscsel.h $(PSSRC)opcheck.h:$(GLSRC)scommon.h +$(PSSRC)opcheck.h:$(GLSRC)memento.h +$(PSSRC)opcheck.h:$(GLSRC)gscsel.h $(PSSRC)opcheck.h:$(GLSRC)gsbitmap.h -$(PSSRC)opcheck.h:$(GLSRC)gsccolor.h $(PSSRC)opcheck.h:$(GLSRC)gsstype.h $(PSSRC)opcheck.h:$(GLSRC)gsmemory.h $(PSSRC)opcheck.h:$(GLSRC)gpsync.h $(PSSRC)opcheck.h:$(GLSRC)gslibctx.h +$(PSSRC)opcheck.h:$(GLSRC)gs_dll_call.h $(PSSRC)opcheck.h:$(GLSRC)gsalloc.h +$(PSSRC)opcheck.h:$(GLSRC)stdio_.h $(PSSRC)opcheck.h:$(GLSRC)gxcindex.h -$(PSSRC)opcheck.h:$(GLSRC)stdint_.h $(PSSRC)opcheck.h:$(GLSRC)gsgstate.h -$(PSSRC)opcheck.h:$(GLSRC)gs_dll_call.h -$(PSSRC)opcheck.h:$(GLSRC)stdio_.h -$(PSSRC)opcheck.h:$(GLSRC)gstypes.h +$(PSSRC)opcheck.h:$(GLSRC)stdint_.h +$(PSSRC)opcheck.h:$(GLSRC)gssprintf.h $(PSSRC)opcheck.h:$(GLSRC)std.h +$(PSSRC)opcheck.h:$(GLSRC)gstypes.h $(PSSRC)opcheck.h:$(GLSRC)stdpre.h $(PSSRC)opcheck.h:$(GLGEN)arch.h -$(PSSRC)opcheck.h:$(GLSRC)gssprintf.h $(PSSRC)opextern.h:$(PSSRC)iref.h $(PSSRC)opextern.h:$(GLSRC)gxalloc.h $(PSSRC)opextern.h:$(GLSRC)gxobj.h $(PSSRC)opextern.h:$(GLSRC)gsnamecl.h $(PSSRC)opextern.h:$(GLSRC)gxcspace.h -$(PSSRC)opextern.h:$(GLSRC)gxfrac.h $(PSSRC)opextern.h:$(GLSRC)gsdcolor.h +$(PSSRC)opextern.h:$(GLSRC)gxfrac.h $(PSSRC)opextern.h:$(GLSRC)gscms.h -$(PSSRC)opextern.h:$(GLSRC)gsdevice.h $(PSSRC)opextern.h:$(GLSRC)gscspace.h +$(PSSRC)opextern.h:$(GLSRC)gsdevice.h $(PSSRC)opextern.h:$(GLSRC)gxarith.h -$(PSSRC)opextern.h:$(GLSRC)gsrefct.h -$(PSSRC)opextern.h:$(GLSRC)gsiparam.h $(PSSRC)opextern.h:$(GLSRC)gxhttile.h -$(PSSRC)opextern.h:$(GLSRC)memento.h -$(PSSRC)opextern.h:$(GLSRC)gsparam.h -$(PSSRC)opextern.h:$(GLSRC)gsmatrix.h +$(PSSRC)opextern.h:$(GLSRC)gsiparam.h $(PSSRC)opextern.h:$(GLSRC)gxbitmap.h +$(PSSRC)opextern.h:$(GLSRC)gsmatrix.h +$(PSSRC)opextern.h:$(GLSRC)gsrefct.h +$(PSSRC)opextern.h:$(GLSRC)gsparam.h +$(PSSRC)opextern.h:$(GLSRC)gsccolor.h $(PSSRC)opextern.h:$(GLSRC)gsstruct.h $(PSSRC)opextern.h:$(GLSRC)gxsync.h -$(PSSRC)opextern.h:$(GLSRC)gscsel.h $(PSSRC)opextern.h:$(GLSRC)scommon.h +$(PSSRC)opextern.h:$(GLSRC)memento.h +$(PSSRC)opextern.h:$(GLSRC)gscsel.h $(PSSRC)opextern.h:$(GLSRC)gsbitmap.h -$(PSSRC)opextern.h:$(GLSRC)gsccolor.h $(PSSRC)opextern.h:$(GLSRC)gsstype.h $(PSSRC)opextern.h:$(GLSRC)gsmemory.h $(PSSRC)opextern.h:$(GLSRC)gpsync.h $(PSSRC)opextern.h:$(GLSRC)gslibctx.h +$(PSSRC)opextern.h:$(GLSRC)gs_dll_call.h $(PSSRC)opextern.h:$(GLSRC)gsalloc.h +$(PSSRC)opextern.h:$(GLSRC)stdio_.h $(PSSRC)opextern.h:$(GLSRC)gxcindex.h -$(PSSRC)opextern.h:$(GLSRC)stdint_.h $(PSSRC)opextern.h:$(GLSRC)gsgstate.h -$(PSSRC)opextern.h:$(GLSRC)gs_dll_call.h -$(PSSRC)opextern.h:$(GLSRC)stdio_.h -$(PSSRC)opextern.h:$(GLSRC)gstypes.h +$(PSSRC)opextern.h:$(GLSRC)stdint_.h +$(PSSRC)opextern.h:$(GLSRC)gssprintf.h $(PSSRC)opextern.h:$(GLSRC)std.h +$(PSSRC)opextern.h:$(GLSRC)gstypes.h $(PSSRC)opextern.h:$(GLSRC)stdpre.h $(PSSRC)opextern.h:$(GLGEN)arch.h -$(PSSRC)opextern.h:$(GLSRC)gssprintf.h $(PSSRC)idsdata.h:$(PSSRC)iddstack.h $(PSSRC)idsdata.h:$(PSSRC)isdata.h $(PSSRC)idsdata.h:$(PSSRC)imemory.h $(PSSRC)idsdata.h:$(PSSRC)ivmspace.h $(PSSRC)idsdata.h:$(PSSRC)iref.h -$(PSSRC)idsdata.h:$(GLSRC)gxalloc.h $(PSSRC)idsdata.h:$(GLSRC)gsgc.h +$(PSSRC)idsdata.h:$(GLSRC)gxalloc.h $(PSSRC)idsdata.h:$(GLSRC)gxobj.h $(PSSRC)idsdata.h:$(GLSRC)gsnamecl.h $(PSSRC)idsdata.h:$(GLSRC)gxcspace.h -$(PSSRC)idsdata.h:$(GLSRC)gxfrac.h $(PSSRC)idsdata.h:$(GLSRC)gsdcolor.h +$(PSSRC)idsdata.h:$(GLSRC)gxfrac.h $(PSSRC)idsdata.h:$(GLSRC)gscms.h -$(PSSRC)idsdata.h:$(GLSRC)gsdevice.h $(PSSRC)idsdata.h:$(GLSRC)gscspace.h +$(PSSRC)idsdata.h:$(GLSRC)gsdevice.h $(PSSRC)idsdata.h:$(GLSRC)gxarith.h -$(PSSRC)idsdata.h:$(GLSRC)gsrefct.h -$(PSSRC)idsdata.h:$(GLSRC)gsiparam.h $(PSSRC)idsdata.h:$(GLSRC)gxhttile.h -$(PSSRC)idsdata.h:$(GLSRC)memento.h -$(PSSRC)idsdata.h:$(GLSRC)gsparam.h -$(PSSRC)idsdata.h:$(GLSRC)gsmatrix.h +$(PSSRC)idsdata.h:$(GLSRC)gsiparam.h $(PSSRC)idsdata.h:$(GLSRC)gxbitmap.h +$(PSSRC)idsdata.h:$(GLSRC)gsmatrix.h +$(PSSRC)idsdata.h:$(GLSRC)gsrefct.h +$(PSSRC)idsdata.h:$(GLSRC)gsparam.h +$(PSSRC)idsdata.h:$(GLSRC)gsccolor.h $(PSSRC)idsdata.h:$(GLSRC)gsstruct.h $(PSSRC)idsdata.h:$(GLSRC)gxsync.h -$(PSSRC)idsdata.h:$(GLSRC)gscsel.h $(PSSRC)idsdata.h:$(GLSRC)scommon.h +$(PSSRC)idsdata.h:$(GLSRC)memento.h +$(PSSRC)idsdata.h:$(GLSRC)gscsel.h $(PSSRC)idsdata.h:$(GLSRC)gsbitmap.h -$(PSSRC)idsdata.h:$(GLSRC)gsccolor.h $(PSSRC)idsdata.h:$(GLSRC)gsstype.h $(PSSRC)idsdata.h:$(GLSRC)gsmemory.h $(PSSRC)idsdata.h:$(GLSRC)gpsync.h $(PSSRC)idsdata.h:$(GLSRC)gslibctx.h +$(PSSRC)idsdata.h:$(GLSRC)gs_dll_call.h $(PSSRC)idsdata.h:$(GLSRC)gsalloc.h +$(PSSRC)idsdata.h:$(GLSRC)stdio_.h $(PSSRC)idsdata.h:$(GLSRC)gxcindex.h -$(PSSRC)idsdata.h:$(GLSRC)stdint_.h $(PSSRC)idsdata.h:$(GLSRC)gsgstate.h -$(PSSRC)idsdata.h:$(GLSRC)gs_dll_call.h -$(PSSRC)idsdata.h:$(GLSRC)stdio_.h -$(PSSRC)idsdata.h:$(GLSRC)gstypes.h +$(PSSRC)idsdata.h:$(GLSRC)stdint_.h +$(PSSRC)idsdata.h:$(GLSRC)gssprintf.h $(PSSRC)idsdata.h:$(GLSRC)std.h +$(PSSRC)idsdata.h:$(GLSRC)gstypes.h $(PSSRC)idsdata.h:$(GLSRC)stdpre.h $(PSSRC)idsdata.h:$(GLGEN)arch.h -$(PSSRC)idsdata.h:$(GLSRC)gssprintf.h $(PSSRC)idstack.h:$(PSSRC)idsdata.h $(PSSRC)idstack.h:$(PSSRC)iddstack.h $(PSSRC)idstack.h:$(PSSRC)istack.h @@ -3546,228 +3548,227 @@ $(PSSRC)idstack.h:$(PSSRC)isdata.h $(PSSRC)idstack.h:$(PSSRC)imemory.h $(PSSRC)idstack.h:$(PSSRC)ivmspace.h $(PSSRC)idstack.h:$(PSSRC)iref.h -$(PSSRC)idstack.h:$(GLSRC)gxalloc.h $(PSSRC)idstack.h:$(GLSRC)gsgc.h +$(PSSRC)idstack.h:$(GLSRC)gxalloc.h $(PSSRC)idstack.h:$(GLSRC)gxobj.h $(PSSRC)idstack.h:$(GLSRC)gsnamecl.h $(PSSRC)idstack.h:$(GLSRC)gxcspace.h -$(PSSRC)idstack.h:$(GLSRC)gxfrac.h $(PSSRC)idstack.h:$(GLSRC)gsdcolor.h +$(PSSRC)idstack.h:$(GLSRC)gxfrac.h $(PSSRC)idstack.h:$(GLSRC)gscms.h -$(PSSRC)idstack.h:$(GLSRC)gsdevice.h $(PSSRC)idstack.h:$(GLSRC)gscspace.h +$(PSSRC)idstack.h:$(GLSRC)gsdevice.h $(PSSRC)idstack.h:$(GLSRC)gxarith.h -$(PSSRC)idstack.h:$(GLSRC)gsrefct.h -$(PSSRC)idstack.h:$(GLSRC)gsiparam.h $(PSSRC)idstack.h:$(GLSRC)gxhttile.h -$(PSSRC)idstack.h:$(GLSRC)memento.h -$(PSSRC)idstack.h:$(GLSRC)gsparam.h -$(PSSRC)idstack.h:$(GLSRC)gsmatrix.h +$(PSSRC)idstack.h:$(GLSRC)gsiparam.h $(PSSRC)idstack.h:$(GLSRC)gxbitmap.h +$(PSSRC)idstack.h:$(GLSRC)gsmatrix.h +$(PSSRC)idstack.h:$(GLSRC)gsrefct.h +$(PSSRC)idstack.h:$(GLSRC)gsparam.h +$(PSSRC)idstack.h:$(GLSRC)gsccolor.h $(PSSRC)idstack.h:$(GLSRC)gsstruct.h $(PSSRC)idstack.h:$(GLSRC)gxsync.h -$(PSSRC)idstack.h:$(GLSRC)gscsel.h $(PSSRC)idstack.h:$(GLSRC)scommon.h +$(PSSRC)idstack.h:$(GLSRC)memento.h +$(PSSRC)idstack.h:$(GLSRC)gscsel.h $(PSSRC)idstack.h:$(GLSRC)gsbitmap.h -$(PSSRC)idstack.h:$(GLSRC)gsccolor.h $(PSSRC)idstack.h:$(GLSRC)gsstype.h $(PSSRC)idstack.h:$(GLSRC)gsmemory.h $(PSSRC)idstack.h:$(GLSRC)gpsync.h $(PSSRC)idstack.h:$(GLSRC)gslibctx.h +$(PSSRC)idstack.h:$(GLSRC)gs_dll_call.h $(PSSRC)idstack.h:$(GLSRC)gsalloc.h +$(PSSRC)idstack.h:$(GLSRC)stdio_.h $(PSSRC)idstack.h:$(GLSRC)gxcindex.h -$(PSSRC)idstack.h:$(GLSRC)stdint_.h $(PSSRC)idstack.h:$(GLSRC)gsgstate.h -$(PSSRC)idstack.h:$(GLSRC)gs_dll_call.h -$(PSSRC)idstack.h:$(GLSRC)stdio_.h -$(PSSRC)idstack.h:$(GLSRC)gstypes.h +$(PSSRC)idstack.h:$(GLSRC)stdint_.h +$(PSSRC)idstack.h:$(GLSRC)gssprintf.h $(PSSRC)idstack.h:$(GLSRC)std.h +$(PSSRC)idstack.h:$(GLSRC)gstypes.h $(PSSRC)idstack.h:$(GLSRC)stdpre.h $(PSSRC)idstack.h:$(GLGEN)arch.h -$(PSSRC)idstack.h:$(GLSRC)gssprintf.h $(PSSRC)iesdata.h:$(PSSRC)isdata.h $(PSSRC)iesdata.h:$(PSSRC)imemory.h $(PSSRC)iesdata.h:$(PSSRC)ivmspace.h $(PSSRC)iesdata.h:$(PSSRC)iref.h -$(PSSRC)iesdata.h:$(GLSRC)gxalloc.h $(PSSRC)iesdata.h:$(GLSRC)gsgc.h +$(PSSRC)iesdata.h:$(GLSRC)gxalloc.h $(PSSRC)iesdata.h:$(GLSRC)gxobj.h $(PSSRC)iesdata.h:$(GLSRC)gsnamecl.h $(PSSRC)iesdata.h:$(GLSRC)gxcspace.h -$(PSSRC)iesdata.h:$(GLSRC)gxfrac.h $(PSSRC)iesdata.h:$(GLSRC)gsdcolor.h +$(PSSRC)iesdata.h:$(GLSRC)gxfrac.h $(PSSRC)iesdata.h:$(GLSRC)gscms.h -$(PSSRC)iesdata.h:$(GLSRC)gsdevice.h $(PSSRC)iesdata.h:$(GLSRC)gscspace.h +$(PSSRC)iesdata.h:$(GLSRC)gsdevice.h $(PSSRC)iesdata.h:$(GLSRC)gxarith.h -$(PSSRC)iesdata.h:$(GLSRC)gsrefct.h -$(PSSRC)iesdata.h:$(GLSRC)gsiparam.h $(PSSRC)iesdata.h:$(GLSRC)gxhttile.h -$(PSSRC)iesdata.h:$(GLSRC)memento.h -$(PSSRC)iesdata.h:$(GLSRC)gsparam.h -$(PSSRC)iesdata.h:$(GLSRC)gsmatrix.h +$(PSSRC)iesdata.h:$(GLSRC)gsiparam.h $(PSSRC)iesdata.h:$(GLSRC)gxbitmap.h +$(PSSRC)iesdata.h:$(GLSRC)gsmatrix.h +$(PSSRC)iesdata.h:$(GLSRC)gsrefct.h +$(PSSRC)iesdata.h:$(GLSRC)gsparam.h +$(PSSRC)iesdata.h:$(GLSRC)gsccolor.h $(PSSRC)iesdata.h:$(GLSRC)gsstruct.h $(PSSRC)iesdata.h:$(GLSRC)gxsync.h -$(PSSRC)iesdata.h:$(GLSRC)gscsel.h $(PSSRC)iesdata.h:$(GLSRC)scommon.h +$(PSSRC)iesdata.h:$(GLSRC)memento.h +$(PSSRC)iesdata.h:$(GLSRC)gscsel.h $(PSSRC)iesdata.h:$(GLSRC)gsbitmap.h -$(PSSRC)iesdata.h:$(GLSRC)gsccolor.h $(PSSRC)iesdata.h:$(GLSRC)gsstype.h $(PSSRC)iesdata.h:$(GLSRC)gsmemory.h $(PSSRC)iesdata.h:$(GLSRC)gpsync.h $(PSSRC)iesdata.h:$(GLSRC)gslibctx.h +$(PSSRC)iesdata.h:$(GLSRC)gs_dll_call.h $(PSSRC)iesdata.h:$(GLSRC)gsalloc.h +$(PSSRC)iesdata.h:$(GLSRC)stdio_.h $(PSSRC)iesdata.h:$(GLSRC)gxcindex.h -$(PSSRC)iesdata.h:$(GLSRC)stdint_.h $(PSSRC)iesdata.h:$(GLSRC)gsgstate.h -$(PSSRC)iesdata.h:$(GLSRC)gs_dll_call.h -$(PSSRC)iesdata.h:$(GLSRC)stdio_.h -$(PSSRC)iesdata.h:$(GLSRC)gstypes.h +$(PSSRC)iesdata.h:$(GLSRC)stdint_.h +$(PSSRC)iesdata.h:$(GLSRC)gssprintf.h $(PSSRC)iesdata.h:$(GLSRC)std.h +$(PSSRC)iesdata.h:$(GLSRC)gstypes.h $(PSSRC)iesdata.h:$(GLSRC)stdpre.h $(PSSRC)iesdata.h:$(GLGEN)arch.h -$(PSSRC)iesdata.h:$(GLSRC)gssprintf.h $(PSSRC)iestack.h:$(PSSRC)iesdata.h $(PSSRC)iestack.h:$(PSSRC)istack.h $(PSSRC)iestack.h:$(PSSRC)isdata.h $(PSSRC)iestack.h:$(PSSRC)imemory.h $(PSSRC)iestack.h:$(PSSRC)ivmspace.h $(PSSRC)iestack.h:$(PSSRC)iref.h -$(PSSRC)iestack.h:$(GLSRC)gxalloc.h $(PSSRC)iestack.h:$(GLSRC)gsgc.h +$(PSSRC)iestack.h:$(GLSRC)gxalloc.h $(PSSRC)iestack.h:$(GLSRC)gxobj.h $(PSSRC)iestack.h:$(GLSRC)gsnamecl.h $(PSSRC)iestack.h:$(GLSRC)gxcspace.h -$(PSSRC)iestack.h:$(GLSRC)gxfrac.h $(PSSRC)iestack.h:$(GLSRC)gsdcolor.h +$(PSSRC)iestack.h:$(GLSRC)gxfrac.h $(PSSRC)iestack.h:$(GLSRC)gscms.h -$(PSSRC)iestack.h:$(GLSRC)gsdevice.h $(PSSRC)iestack.h:$(GLSRC)gscspace.h +$(PSSRC)iestack.h:$(GLSRC)gsdevice.h $(PSSRC)iestack.h:$(GLSRC)gxarith.h -$(PSSRC)iestack.h:$(GLSRC)gsrefct.h -$(PSSRC)iestack.h:$(GLSRC)gsiparam.h $(PSSRC)iestack.h:$(GLSRC)gxhttile.h -$(PSSRC)iestack.h:$(GLSRC)memento.h -$(PSSRC)iestack.h:$(GLSRC)gsparam.h -$(PSSRC)iestack.h:$(GLSRC)gsmatrix.h +$(PSSRC)iestack.h:$(GLSRC)gsiparam.h $(PSSRC)iestack.h:$(GLSRC)gxbitmap.h +$(PSSRC)iestack.h:$(GLSRC)gsmatrix.h +$(PSSRC)iestack.h:$(GLSRC)gsrefct.h +$(PSSRC)iestack.h:$(GLSRC)gsparam.h +$(PSSRC)iestack.h:$(GLSRC)gsccolor.h $(PSSRC)iestack.h:$(GLSRC)gsstruct.h $(PSSRC)iestack.h:$(GLSRC)gxsync.h -$(PSSRC)iestack.h:$(GLSRC)gscsel.h $(PSSRC)iestack.h:$(GLSRC)scommon.h +$(PSSRC)iestack.h:$(GLSRC)memento.h +$(PSSRC)iestack.h:$(GLSRC)gscsel.h $(PSSRC)iestack.h:$(GLSRC)gsbitmap.h -$(PSSRC)iestack.h:$(GLSRC)gsccolor.h $(PSSRC)iestack.h:$(GLSRC)gsstype.h $(PSSRC)iestack.h:$(GLSRC)gsmemory.h $(PSSRC)iestack.h:$(GLSRC)gpsync.h $(PSSRC)iestack.h:$(GLSRC)gslibctx.h +$(PSSRC)iestack.h:$(GLSRC)gs_dll_call.h $(PSSRC)iestack.h:$(GLSRC)gsalloc.h +$(PSSRC)iestack.h:$(GLSRC)stdio_.h $(PSSRC)iestack.h:$(GLSRC)gxcindex.h -$(PSSRC)iestack.h:$(GLSRC)stdint_.h $(PSSRC)iestack.h:$(GLSRC)gsgstate.h -$(PSSRC)iestack.h:$(GLSRC)gs_dll_call.h -$(PSSRC)iestack.h:$(GLSRC)stdio_.h -$(PSSRC)iestack.h:$(GLSRC)gstypes.h +$(PSSRC)iestack.h:$(GLSRC)stdint_.h +$(PSSRC)iestack.h:$(GLSRC)gssprintf.h $(PSSRC)iestack.h:$(GLSRC)std.h +$(PSSRC)iestack.h:$(GLSRC)gstypes.h $(PSSRC)iestack.h:$(GLSRC)stdpre.h $(PSSRC)iestack.h:$(GLGEN)arch.h -$(PSSRC)iestack.h:$(GLSRC)gssprintf.h $(PSSRC)iosdata.h:$(PSSRC)isdata.h $(PSSRC)iosdata.h:$(PSSRC)imemory.h $(PSSRC)iosdata.h:$(PSSRC)ivmspace.h $(PSSRC)iosdata.h:$(PSSRC)iref.h -$(PSSRC)iosdata.h:$(GLSRC)gxalloc.h $(PSSRC)iosdata.h:$(GLSRC)gsgc.h +$(PSSRC)iosdata.h:$(GLSRC)gxalloc.h $(PSSRC)iosdata.h:$(GLSRC)gxobj.h $(PSSRC)iosdata.h:$(GLSRC)gsnamecl.h $(PSSRC)iosdata.h:$(GLSRC)gxcspace.h -$(PSSRC)iosdata.h:$(GLSRC)gxfrac.h $(PSSRC)iosdata.h:$(GLSRC)gsdcolor.h +$(PSSRC)iosdata.h:$(GLSRC)gxfrac.h $(PSSRC)iosdata.h:$(GLSRC)gscms.h -$(PSSRC)iosdata.h:$(GLSRC)gsdevice.h $(PSSRC)iosdata.h:$(GLSRC)gscspace.h +$(PSSRC)iosdata.h:$(GLSRC)gsdevice.h $(PSSRC)iosdata.h:$(GLSRC)gxarith.h -$(PSSRC)iosdata.h:$(GLSRC)gsrefct.h -$(PSSRC)iosdata.h:$(GLSRC)gsiparam.h $(PSSRC)iosdata.h:$(GLSRC)gxhttile.h -$(PSSRC)iosdata.h:$(GLSRC)memento.h -$(PSSRC)iosdata.h:$(GLSRC)gsparam.h -$(PSSRC)iosdata.h:$(GLSRC)gsmatrix.h +$(PSSRC)iosdata.h:$(GLSRC)gsiparam.h $(PSSRC)iosdata.h:$(GLSRC)gxbitmap.h +$(PSSRC)iosdata.h:$(GLSRC)gsmatrix.h +$(PSSRC)iosdata.h:$(GLSRC)gsrefct.h +$(PSSRC)iosdata.h:$(GLSRC)gsparam.h +$(PSSRC)iosdata.h:$(GLSRC)gsccolor.h $(PSSRC)iosdata.h:$(GLSRC)gsstruct.h $(PSSRC)iosdata.h:$(GLSRC)gxsync.h -$(PSSRC)iosdata.h:$(GLSRC)gscsel.h $(PSSRC)iosdata.h:$(GLSRC)scommon.h +$(PSSRC)iosdata.h:$(GLSRC)memento.h +$(PSSRC)iosdata.h:$(GLSRC)gscsel.h $(PSSRC)iosdata.h:$(GLSRC)gsbitmap.h -$(PSSRC)iosdata.h:$(GLSRC)gsccolor.h $(PSSRC)iosdata.h:$(GLSRC)gsstype.h $(PSSRC)iosdata.h:$(GLSRC)gsmemory.h $(PSSRC)iosdata.h:$(GLSRC)gpsync.h $(PSSRC)iosdata.h:$(GLSRC)gslibctx.h +$(PSSRC)iosdata.h:$(GLSRC)gs_dll_call.h $(PSSRC)iosdata.h:$(GLSRC)gsalloc.h +$(PSSRC)iosdata.h:$(GLSRC)stdio_.h $(PSSRC)iosdata.h:$(GLSRC)gxcindex.h -$(PSSRC)iosdata.h:$(GLSRC)stdint_.h $(PSSRC)iosdata.h:$(GLSRC)gsgstate.h -$(PSSRC)iosdata.h:$(GLSRC)gs_dll_call.h -$(PSSRC)iosdata.h:$(GLSRC)stdio_.h -$(PSSRC)iosdata.h:$(GLSRC)gstypes.h +$(PSSRC)iosdata.h:$(GLSRC)stdint_.h +$(PSSRC)iosdata.h:$(GLSRC)gssprintf.h $(PSSRC)iosdata.h:$(GLSRC)std.h +$(PSSRC)iosdata.h:$(GLSRC)gstypes.h $(PSSRC)iosdata.h:$(GLSRC)stdpre.h $(PSSRC)iosdata.h:$(GLGEN)arch.h -$(PSSRC)iosdata.h:$(GLSRC)gssprintf.h $(PSSRC)iostack.h:$(PSSRC)istack.h $(PSSRC)iostack.h:$(PSSRC)iosdata.h $(PSSRC)iostack.h:$(PSSRC)isdata.h $(PSSRC)iostack.h:$(PSSRC)imemory.h $(PSSRC)iostack.h:$(PSSRC)ivmspace.h $(PSSRC)iostack.h:$(PSSRC)iref.h -$(PSSRC)iostack.h:$(GLSRC)gxalloc.h $(PSSRC)iostack.h:$(GLSRC)gsgc.h +$(PSSRC)iostack.h:$(GLSRC)gxalloc.h $(PSSRC)iostack.h:$(GLSRC)gxobj.h $(PSSRC)iostack.h:$(GLSRC)gsnamecl.h $(PSSRC)iostack.h:$(GLSRC)gxcspace.h -$(PSSRC)iostack.h:$(GLSRC)gxfrac.h $(PSSRC)iostack.h:$(GLSRC)gsdcolor.h +$(PSSRC)iostack.h:$(GLSRC)gxfrac.h $(PSSRC)iostack.h:$(GLSRC)gscms.h -$(PSSRC)iostack.h:$(GLSRC)gsdevice.h $(PSSRC)iostack.h:$(GLSRC)gscspace.h +$(PSSRC)iostack.h:$(GLSRC)gsdevice.h $(PSSRC)iostack.h:$(GLSRC)gxarith.h -$(PSSRC)iostack.h:$(GLSRC)gsrefct.h -$(PSSRC)iostack.h:$(GLSRC)gsiparam.h $(PSSRC)iostack.h:$(GLSRC)gxhttile.h -$(PSSRC)iostack.h:$(GLSRC)memento.h -$(PSSRC)iostack.h:$(GLSRC)gsparam.h -$(PSSRC)iostack.h:$(GLSRC)gsmatrix.h +$(PSSRC)iostack.h:$(GLSRC)gsiparam.h $(PSSRC)iostack.h:$(GLSRC)gxbitmap.h +$(PSSRC)iostack.h:$(GLSRC)gsmatrix.h +$(PSSRC)iostack.h:$(GLSRC)gsrefct.h +$(PSSRC)iostack.h:$(GLSRC)gsparam.h +$(PSSRC)iostack.h:$(GLSRC)gsccolor.h $(PSSRC)iostack.h:$(GLSRC)gsstruct.h $(PSSRC)iostack.h:$(GLSRC)gxsync.h -$(PSSRC)iostack.h:$(GLSRC)gscsel.h $(PSSRC)iostack.h:$(GLSRC)scommon.h +$(PSSRC)iostack.h:$(GLSRC)memento.h +$(PSSRC)iostack.h:$(GLSRC)gscsel.h $(PSSRC)iostack.h:$(GLSRC)gsbitmap.h -$(PSSRC)iostack.h:$(GLSRC)gsccolor.h $(PSSRC)iostack.h:$(GLSRC)gsstype.h $(PSSRC)iostack.h:$(GLSRC)gsmemory.h $(PSSRC)iostack.h:$(GLSRC)gpsync.h $(PSSRC)iostack.h:$(GLSRC)gslibctx.h +$(PSSRC)iostack.h:$(GLSRC)gs_dll_call.h $(PSSRC)iostack.h:$(GLSRC)gsalloc.h +$(PSSRC)iostack.h:$(GLSRC)stdio_.h $(PSSRC)iostack.h:$(GLSRC)gxcindex.h -$(PSSRC)iostack.h:$(GLSRC)stdint_.h $(PSSRC)iostack.h:$(GLSRC)gsgstate.h -$(PSSRC)iostack.h:$(GLSRC)gs_dll_call.h -$(PSSRC)iostack.h:$(GLSRC)stdio_.h -$(PSSRC)iostack.h:$(GLSRC)gstypes.h +$(PSSRC)iostack.h:$(GLSRC)stdint_.h +$(PSSRC)iostack.h:$(GLSRC)gssprintf.h $(PSSRC)iostack.h:$(GLSRC)std.h +$(PSSRC)iostack.h:$(GLSRC)gstypes.h $(PSSRC)iostack.h:$(GLSRC)stdpre.h $(PSSRC)iostack.h:$(GLGEN)arch.h -$(PSSRC)iostack.h:$(GLSRC)gssprintf.h $(PSSRC)icstate.h:$(PSSRC)idsdata.h $(PSSRC)icstate.h:$(PSSRC)iesdata.h $(PSSRC)icstate.h:$(PSSRC)interp.h $(PSSRC)icstate.h:$(PSSRC)opdef.h $(PSSRC)icstate.h:$(PSSRC)files.h $(PSSRC)icstate.h:$(PSSRC)iddstack.h -$(PSSRC)icstate.h:$(GLSRC)stream.h $(PSSRC)icstate.h:$(PSSRC)store.h $(PSSRC)icstate.h:$(PSSRC)iosdata.h $(PSSRC)icstate.h:$(PSSRC)ialloc.h @@ -3776,53 +3777,54 @@ $(PSSRC)icstate.h:$(PSSRC)isdata.h $(PSSRC)icstate.h:$(PSSRC)imemory.h $(PSSRC)icstate.h:$(PSSRC)ivmspace.h $(PSSRC)icstate.h:$(PSSRC)iref.h -$(PSSRC)icstate.h:$(GLSRC)gxalloc.h $(PSSRC)icstate.h:$(GLSRC)gsgc.h +$(PSSRC)icstate.h:$(GLSRC)gxalloc.h $(PSSRC)icstate.h:$(GLSRC)gxobj.h $(PSSRC)icstate.h:$(GLSRC)gsnamecl.h -$(PSSRC)icstate.h:$(GLSRC)gxiodev.h +$(PSSRC)icstate.h:$(GLSRC)stream.h $(PSSRC)icstate.h:$(GLSRC)gxcspace.h -$(PSSRC)icstate.h:$(GLSRC)stat_.h -$(PSSRC)icstate.h:$(GLSRC)gxfrac.h +$(PSSRC)icstate.h:$(GLSRC)gxiodev.h $(PSSRC)icstate.h:$(GLSRC)gsdcolor.h +$(PSSRC)icstate.h:$(GLSRC)gxfrac.h $(PSSRC)icstate.h:$(GLSRC)gscms.h -$(PSSRC)icstate.h:$(GLSRC)gsdevice.h $(PSSRC)icstate.h:$(GLSRC)gscspace.h +$(PSSRC)icstate.h:$(GLSRC)gsdevice.h $(PSSRC)icstate.h:$(GLSRC)gxarith.h -$(PSSRC)icstate.h:$(GLSRC)gsrefct.h -$(PSSRC)icstate.h:$(GLSRC)gsiparam.h $(PSSRC)icstate.h:$(GLSRC)gxhttile.h -$(PSSRC)icstate.h:$(GLSRC)gp.h -$(PSSRC)icstate.h:$(GLSRC)memento.h -$(PSSRC)icstate.h:$(GLSRC)gsparam.h -$(PSSRC)icstate.h:$(GLSRC)gsmatrix.h +$(PSSRC)icstate.h:$(GLSRC)gsiparam.h $(PSSRC)icstate.h:$(GLSRC)gxbitmap.h -$(PSSRC)icstate.h:$(GLSRC)srdline.h +$(PSSRC)icstate.h:$(GLSRC)gsmatrix.h +$(PSSRC)icstate.h:$(GLSRC)gsrefct.h +$(PSSRC)icstate.h:$(GLSRC)gsparam.h +$(PSSRC)icstate.h:$(GLSRC)gp.h +$(PSSRC)icstate.h:$(GLSRC)gsccolor.h $(PSSRC)icstate.h:$(GLSRC)gsstruct.h $(PSSRC)icstate.h:$(GLSRC)gxsync.h -$(PSSRC)icstate.h:$(GLSRC)gscsel.h +$(PSSRC)icstate.h:$(GLSRC)srdline.h $(PSSRC)icstate.h:$(GLSRC)scommon.h +$(PSSRC)icstate.h:$(GLSRC)memento.h +$(PSSRC)icstate.h:$(GLSRC)gscsel.h $(PSSRC)icstate.h:$(GLSRC)gsbitmap.h $(PSSRC)icstate.h:$(GLSRC)gsfname.h -$(PSSRC)icstate.h:$(GLSRC)gsccolor.h $(PSSRC)icstate.h:$(GLSRC)gsstype.h +$(PSSRC)icstate.h:$(GLSRC)stat_.h $(PSSRC)icstate.h:$(GLSRC)gsmemory.h $(PSSRC)icstate.h:$(GLSRC)gpsync.h -$(PSSRC)icstate.h:$(GLSRC)gpgetenv.h $(PSSRC)icstate.h:$(GLSRC)memory_.h +$(PSSRC)icstate.h:$(GLSRC)gpgetenv.h $(PSSRC)icstate.h:$(GLSRC)gslibctx.h $(PSSRC)icstate.h:$(GLSRC)gscdefs.h +$(PSSRC)icstate.h:$(GLSRC)gs_dll_call.h $(PSSRC)icstate.h:$(GLSRC)gsalloc.h +$(PSSRC)icstate.h:$(GLSRC)stdio_.h $(PSSRC)icstate.h:$(GLSRC)gxcindex.h -$(PSSRC)icstate.h:$(GLSRC)stdint_.h $(PSSRC)icstate.h:$(GLSRC)gsgstate.h -$(PSSRC)icstate.h:$(GLSRC)gs_dll_call.h -$(PSSRC)icstate.h:$(GLSRC)stdio_.h -$(PSSRC)icstate.h:$(GLSRC)gstypes.h +$(PSSRC)icstate.h:$(GLSRC)stdint_.h +$(PSSRC)icstate.h:$(GLSRC)gssprintf.h $(PSSRC)icstate.h:$(GLSRC)std.h +$(PSSRC)icstate.h:$(GLSRC)gstypes.h $(PSSRC)icstate.h:$(GLSRC)stdpre.h $(PSSRC)icstate.h:$(GLGEN)arch.h -$(PSSRC)icstate.h:$(GLSRC)gssprintf.h $(PSSRC)iddict.h:$(PSSRC)icstate.h $(PSSRC)iddict.h:$(PSSRC)idsdata.h $(PSSRC)iddict.h:$(PSSRC)iesdata.h @@ -3831,7 +3833,6 @@ $(PSSRC)iddict.h:$(PSSRC)opdef.h $(PSSRC)iddict.h:$(PSSRC)files.h $(PSSRC)iddict.h:$(PSSRC)idict.h $(PSSRC)iddict.h:$(PSSRC)iddstack.h -$(PSSRC)iddict.h:$(GLSRC)stream.h $(PSSRC)iddict.h:$(PSSRC)store.h $(PSSRC)iddict.h:$(PSSRC)iosdata.h $(PSSRC)iddict.h:$(PSSRC)ialloc.h @@ -3840,53 +3841,54 @@ $(PSSRC)iddict.h:$(PSSRC)isdata.h $(PSSRC)iddict.h:$(PSSRC)imemory.h $(PSSRC)iddict.h:$(PSSRC)ivmspace.h $(PSSRC)iddict.h:$(PSSRC)iref.h -$(PSSRC)iddict.h:$(GLSRC)gxalloc.h $(PSSRC)iddict.h:$(GLSRC)gsgc.h +$(PSSRC)iddict.h:$(GLSRC)gxalloc.h $(PSSRC)iddict.h:$(GLSRC)gxobj.h $(PSSRC)iddict.h:$(GLSRC)gsnamecl.h -$(PSSRC)iddict.h:$(GLSRC)gxiodev.h +$(PSSRC)iddict.h:$(GLSRC)stream.h $(PSSRC)iddict.h:$(GLSRC)gxcspace.h -$(PSSRC)iddict.h:$(GLSRC)stat_.h -$(PSSRC)iddict.h:$(GLSRC)gxfrac.h +$(PSSRC)iddict.h:$(GLSRC)gxiodev.h $(PSSRC)iddict.h:$(GLSRC)gsdcolor.h +$(PSSRC)iddict.h:$(GLSRC)gxfrac.h $(PSSRC)iddict.h:$(GLSRC)gscms.h -$(PSSRC)iddict.h:$(GLSRC)gsdevice.h $(PSSRC)iddict.h:$(GLSRC)gscspace.h +$(PSSRC)iddict.h:$(GLSRC)gsdevice.h $(PSSRC)iddict.h:$(GLSRC)gxarith.h -$(PSSRC)iddict.h:$(GLSRC)gsrefct.h -$(PSSRC)iddict.h:$(GLSRC)gsiparam.h $(PSSRC)iddict.h:$(GLSRC)gxhttile.h -$(PSSRC)iddict.h:$(GLSRC)gp.h -$(PSSRC)iddict.h:$(GLSRC)memento.h -$(PSSRC)iddict.h:$(GLSRC)gsparam.h -$(PSSRC)iddict.h:$(GLSRC)gsmatrix.h +$(PSSRC)iddict.h:$(GLSRC)gsiparam.h $(PSSRC)iddict.h:$(GLSRC)gxbitmap.h -$(PSSRC)iddict.h:$(GLSRC)srdline.h +$(PSSRC)iddict.h:$(GLSRC)gsmatrix.h +$(PSSRC)iddict.h:$(GLSRC)gsrefct.h +$(PSSRC)iddict.h:$(GLSRC)gsparam.h +$(PSSRC)iddict.h:$(GLSRC)gp.h +$(PSSRC)iddict.h:$(GLSRC)gsccolor.h $(PSSRC)iddict.h:$(GLSRC)gsstruct.h $(PSSRC)iddict.h:$(GLSRC)gxsync.h -$(PSSRC)iddict.h:$(GLSRC)gscsel.h +$(PSSRC)iddict.h:$(GLSRC)srdline.h $(PSSRC)iddict.h:$(GLSRC)scommon.h +$(PSSRC)iddict.h:$(GLSRC)memento.h +$(PSSRC)iddict.h:$(GLSRC)gscsel.h $(PSSRC)iddict.h:$(GLSRC)gsbitmap.h $(PSSRC)iddict.h:$(GLSRC)gsfname.h -$(PSSRC)iddict.h:$(GLSRC)gsccolor.h $(PSSRC)iddict.h:$(GLSRC)gsstype.h +$(PSSRC)iddict.h:$(GLSRC)stat_.h $(PSSRC)iddict.h:$(GLSRC)gsmemory.h $(PSSRC)iddict.h:$(GLSRC)gpsync.h -$(PSSRC)iddict.h:$(GLSRC)gpgetenv.h $(PSSRC)iddict.h:$(GLSRC)memory_.h +$(PSSRC)iddict.h:$(GLSRC)gpgetenv.h $(PSSRC)iddict.h:$(GLSRC)gslibctx.h $(PSSRC)iddict.h:$(GLSRC)gscdefs.h +$(PSSRC)iddict.h:$(GLSRC)gs_dll_call.h $(PSSRC)iddict.h:$(GLSRC)gsalloc.h +$(PSSRC)iddict.h:$(GLSRC)stdio_.h $(PSSRC)iddict.h:$(GLSRC)gxcindex.h -$(PSSRC)iddict.h:$(GLSRC)stdint_.h $(PSSRC)iddict.h:$(GLSRC)gsgstate.h -$(PSSRC)iddict.h:$(GLSRC)gs_dll_call.h -$(PSSRC)iddict.h:$(GLSRC)stdio_.h -$(PSSRC)iddict.h:$(GLSRC)gstypes.h +$(PSSRC)iddict.h:$(GLSRC)stdint_.h +$(PSSRC)iddict.h:$(GLSRC)gssprintf.h $(PSSRC)iddict.h:$(GLSRC)std.h +$(PSSRC)iddict.h:$(GLSRC)gstypes.h $(PSSRC)iddict.h:$(GLSRC)stdpre.h $(PSSRC)iddict.h:$(GLGEN)arch.h -$(PSSRC)iddict.h:$(GLSRC)gssprintf.h $(PSSRC)dstack.h:$(PSSRC)idstack.h $(PSSRC)dstack.h:$(PSSRC)icstate.h $(PSSRC)dstack.h:$(PSSRC)idsdata.h @@ -3896,7 +3898,6 @@ $(PSSRC)dstack.h:$(PSSRC)opdef.h $(PSSRC)dstack.h:$(PSSRC)files.h $(PSSRC)dstack.h:$(PSSRC)iddstack.h $(PSSRC)dstack.h:$(PSSRC)istack.h -$(PSSRC)dstack.h:$(GLSRC)stream.h $(PSSRC)dstack.h:$(PSSRC)store.h $(PSSRC)dstack.h:$(PSSRC)iosdata.h $(PSSRC)dstack.h:$(PSSRC)ialloc.h @@ -3905,53 +3906,54 @@ $(PSSRC)dstack.h:$(PSSRC)isdata.h $(PSSRC)dstack.h:$(PSSRC)imemory.h $(PSSRC)dstack.h:$(PSSRC)ivmspace.h $(PSSRC)dstack.h:$(PSSRC)iref.h -$(PSSRC)dstack.h:$(GLSRC)gxalloc.h $(PSSRC)dstack.h:$(GLSRC)gsgc.h +$(PSSRC)dstack.h:$(GLSRC)gxalloc.h $(PSSRC)dstack.h:$(GLSRC)gxobj.h $(PSSRC)dstack.h:$(GLSRC)gsnamecl.h -$(PSSRC)dstack.h:$(GLSRC)gxiodev.h +$(PSSRC)dstack.h:$(GLSRC)stream.h $(PSSRC)dstack.h:$(GLSRC)gxcspace.h -$(PSSRC)dstack.h:$(GLSRC)stat_.h -$(PSSRC)dstack.h:$(GLSRC)gxfrac.h +$(PSSRC)dstack.h:$(GLSRC)gxiodev.h $(PSSRC)dstack.h:$(GLSRC)gsdcolor.h +$(PSSRC)dstack.h:$(GLSRC)gxfrac.h $(PSSRC)dstack.h:$(GLSRC)gscms.h -$(PSSRC)dstack.h:$(GLSRC)gsdevice.h $(PSSRC)dstack.h:$(GLSRC)gscspace.h +$(PSSRC)dstack.h:$(GLSRC)gsdevice.h $(PSSRC)dstack.h:$(GLSRC)gxarith.h -$(PSSRC)dstack.h:$(GLSRC)gsrefct.h -$(PSSRC)dstack.h:$(GLSRC)gsiparam.h $(PSSRC)dstack.h:$(GLSRC)gxhttile.h -$(PSSRC)dstack.h:$(GLSRC)gp.h -$(PSSRC)dstack.h:$(GLSRC)memento.h -$(PSSRC)dstack.h:$(GLSRC)gsparam.h -$(PSSRC)dstack.h:$(GLSRC)gsmatrix.h +$(PSSRC)dstack.h:$(GLSRC)gsiparam.h $(PSSRC)dstack.h:$(GLSRC)gxbitmap.h -$(PSSRC)dstack.h:$(GLSRC)srdline.h +$(PSSRC)dstack.h:$(GLSRC)gsmatrix.h +$(PSSRC)dstack.h:$(GLSRC)gsrefct.h +$(PSSRC)dstack.h:$(GLSRC)gsparam.h +$(PSSRC)dstack.h:$(GLSRC)gp.h +$(PSSRC)dstack.h:$(GLSRC)gsccolor.h $(PSSRC)dstack.h:$(GLSRC)gsstruct.h $(PSSRC)dstack.h:$(GLSRC)gxsync.h -$(PSSRC)dstack.h:$(GLSRC)gscsel.h +$(PSSRC)dstack.h:$(GLSRC)srdline.h $(PSSRC)dstack.h:$(GLSRC)scommon.h +$(PSSRC)dstack.h:$(GLSRC)memento.h +$(PSSRC)dstack.h:$(GLSRC)gscsel.h $(PSSRC)dstack.h:$(GLSRC)gsbitmap.h $(PSSRC)dstack.h:$(GLSRC)gsfname.h -$(PSSRC)dstack.h:$(GLSRC)gsccolor.h $(PSSRC)dstack.h:$(GLSRC)gsstype.h +$(PSSRC)dstack.h:$(GLSRC)stat_.h $(PSSRC)dstack.h:$(GLSRC)gsmemory.h $(PSSRC)dstack.h:$(GLSRC)gpsync.h -$(PSSRC)dstack.h:$(GLSRC)gpgetenv.h $(PSSRC)dstack.h:$(GLSRC)memory_.h +$(PSSRC)dstack.h:$(GLSRC)gpgetenv.h $(PSSRC)dstack.h:$(GLSRC)gslibctx.h $(PSSRC)dstack.h:$(GLSRC)gscdefs.h +$(PSSRC)dstack.h:$(GLSRC)gs_dll_call.h $(PSSRC)dstack.h:$(GLSRC)gsalloc.h +$(PSSRC)dstack.h:$(GLSRC)stdio_.h $(PSSRC)dstack.h:$(GLSRC)gxcindex.h -$(PSSRC)dstack.h:$(GLSRC)stdint_.h $(PSSRC)dstack.h:$(GLSRC)gsgstate.h -$(PSSRC)dstack.h:$(GLSRC)gs_dll_call.h -$(PSSRC)dstack.h:$(GLSRC)stdio_.h -$(PSSRC)dstack.h:$(GLSRC)gstypes.h +$(PSSRC)dstack.h:$(GLSRC)stdint_.h +$(PSSRC)dstack.h:$(GLSRC)gssprintf.h $(PSSRC)dstack.h:$(GLSRC)std.h +$(PSSRC)dstack.h:$(GLSRC)gstypes.h $(PSSRC)dstack.h:$(GLSRC)stdpre.h $(PSSRC)dstack.h:$(GLGEN)arch.h -$(PSSRC)dstack.h:$(GLSRC)gssprintf.h $(PSSRC)estack.h:$(PSSRC)iestack.h $(PSSRC)estack.h:$(PSSRC)icstate.h $(PSSRC)estack.h:$(PSSRC)idsdata.h @@ -3961,7 +3963,6 @@ $(PSSRC)estack.h:$(PSSRC)opdef.h $(PSSRC)estack.h:$(PSSRC)files.h $(PSSRC)estack.h:$(PSSRC)iddstack.h $(PSSRC)estack.h:$(PSSRC)istack.h -$(PSSRC)estack.h:$(GLSRC)stream.h $(PSSRC)estack.h:$(PSSRC)store.h $(PSSRC)estack.h:$(PSSRC)iosdata.h $(PSSRC)estack.h:$(PSSRC)ialloc.h @@ -3970,53 +3971,54 @@ $(PSSRC)estack.h:$(PSSRC)isdata.h $(PSSRC)estack.h:$(PSSRC)imemory.h $(PSSRC)estack.h:$(PSSRC)ivmspace.h $(PSSRC)estack.h:$(PSSRC)iref.h -$(PSSRC)estack.h:$(GLSRC)gxalloc.h $(PSSRC)estack.h:$(GLSRC)gsgc.h +$(PSSRC)estack.h:$(GLSRC)gxalloc.h $(PSSRC)estack.h:$(GLSRC)gxobj.h $(PSSRC)estack.h:$(GLSRC)gsnamecl.h -$(PSSRC)estack.h:$(GLSRC)gxiodev.h +$(PSSRC)estack.h:$(GLSRC)stream.h $(PSSRC)estack.h:$(GLSRC)gxcspace.h -$(PSSRC)estack.h:$(GLSRC)stat_.h -$(PSSRC)estack.h:$(GLSRC)gxfrac.h +$(PSSRC)estack.h:$(GLSRC)gxiodev.h $(PSSRC)estack.h:$(GLSRC)gsdcolor.h +$(PSSRC)estack.h:$(GLSRC)gxfrac.h $(PSSRC)estack.h:$(GLSRC)gscms.h -$(PSSRC)estack.h:$(GLSRC)gsdevice.h $(PSSRC)estack.h:$(GLSRC)gscspace.h +$(PSSRC)estack.h:$(GLSRC)gsdevice.h $(PSSRC)estack.h:$(GLSRC)gxarith.h -$(PSSRC)estack.h:$(GLSRC)gsrefct.h -$(PSSRC)estack.h:$(GLSRC)gsiparam.h $(PSSRC)estack.h:$(GLSRC)gxhttile.h -$(PSSRC)estack.h:$(GLSRC)gp.h -$(PSSRC)estack.h:$(GLSRC)memento.h -$(PSSRC)estack.h:$(GLSRC)gsparam.h -$(PSSRC)estack.h:$(GLSRC)gsmatrix.h +$(PSSRC)estack.h:$(GLSRC)gsiparam.h $(PSSRC)estack.h:$(GLSRC)gxbitmap.h -$(PSSRC)estack.h:$(GLSRC)srdline.h +$(PSSRC)estack.h:$(GLSRC)gsmatrix.h +$(PSSRC)estack.h:$(GLSRC)gsrefct.h +$(PSSRC)estack.h:$(GLSRC)gsparam.h +$(PSSRC)estack.h:$(GLSRC)gp.h +$(PSSRC)estack.h:$(GLSRC)gsccolor.h $(PSSRC)estack.h:$(GLSRC)gsstruct.h $(PSSRC)estack.h:$(GLSRC)gxsync.h -$(PSSRC)estack.h:$(GLSRC)gscsel.h +$(PSSRC)estack.h:$(GLSRC)srdline.h $(PSSRC)estack.h:$(GLSRC)scommon.h +$(PSSRC)estack.h:$(GLSRC)memento.h +$(PSSRC)estack.h:$(GLSRC)gscsel.h $(PSSRC)estack.h:$(GLSRC)gsbitmap.h $(PSSRC)estack.h:$(GLSRC)gsfname.h -$(PSSRC)estack.h:$(GLSRC)gsccolor.h $(PSSRC)estack.h:$(GLSRC)gsstype.h +$(PSSRC)estack.h:$(GLSRC)stat_.h $(PSSRC)estack.h:$(GLSRC)gsmemory.h $(PSSRC)estack.h:$(GLSRC)gpsync.h -$(PSSRC)estack.h:$(GLSRC)gpgetenv.h $(PSSRC)estack.h:$(GLSRC)memory_.h +$(PSSRC)estack.h:$(GLSRC)gpgetenv.h $(PSSRC)estack.h:$(GLSRC)gslibctx.h $(PSSRC)estack.h:$(GLSRC)gscdefs.h +$(PSSRC)estack.h:$(GLSRC)gs_dll_call.h $(PSSRC)estack.h:$(GLSRC)gsalloc.h +$(PSSRC)estack.h:$(GLSRC)stdio_.h $(PSSRC)estack.h:$(GLSRC)gxcindex.h -$(PSSRC)estack.h:$(GLSRC)stdint_.h $(PSSRC)estack.h:$(GLSRC)gsgstate.h -$(PSSRC)estack.h:$(GLSRC)gs_dll_call.h -$(PSSRC)estack.h:$(GLSRC)stdio_.h -$(PSSRC)estack.h:$(GLSRC)gstypes.h +$(PSSRC)estack.h:$(GLSRC)stdint_.h +$(PSSRC)estack.h:$(GLSRC)gssprintf.h $(PSSRC)estack.h:$(GLSRC)std.h +$(PSSRC)estack.h:$(GLSRC)gstypes.h $(PSSRC)estack.h:$(GLSRC)stdpre.h $(PSSRC)estack.h:$(GLGEN)arch.h -$(PSSRC)estack.h:$(GLSRC)gssprintf.h $(PSSRC)ostack.h:$(PSSRC)icstate.h $(PSSRC)ostack.h:$(PSSRC)idsdata.h $(PSSRC)ostack.h:$(PSSRC)iesdata.h @@ -4026,7 +4028,6 @@ $(PSSRC)ostack.h:$(PSSRC)opdef.h $(PSSRC)ostack.h:$(PSSRC)files.h $(PSSRC)ostack.h:$(PSSRC)iddstack.h $(PSSRC)ostack.h:$(PSSRC)istack.h -$(PSSRC)ostack.h:$(GLSRC)stream.h $(PSSRC)ostack.h:$(PSSRC)store.h $(PSSRC)ostack.h:$(PSSRC)iosdata.h $(PSSRC)ostack.h:$(PSSRC)ialloc.h @@ -4035,53 +4036,54 @@ $(PSSRC)ostack.h:$(PSSRC)isdata.h $(PSSRC)ostack.h:$(PSSRC)imemory.h $(PSSRC)ostack.h:$(PSSRC)ivmspace.h $(PSSRC)ostack.h:$(PSSRC)iref.h -$(PSSRC)ostack.h:$(GLSRC)gxalloc.h $(PSSRC)ostack.h:$(GLSRC)gsgc.h +$(PSSRC)ostack.h:$(GLSRC)gxalloc.h $(PSSRC)ostack.h:$(GLSRC)gxobj.h $(PSSRC)ostack.h:$(GLSRC)gsnamecl.h -$(PSSRC)ostack.h:$(GLSRC)gxiodev.h +$(PSSRC)ostack.h:$(GLSRC)stream.h $(PSSRC)ostack.h:$(GLSRC)gxcspace.h -$(PSSRC)ostack.h:$(GLSRC)stat_.h -$(PSSRC)ostack.h:$(GLSRC)gxfrac.h +$(PSSRC)ostack.h:$(GLSRC)gxiodev.h $(PSSRC)ostack.h:$(GLSRC)gsdcolor.h +$(PSSRC)ostack.h:$(GLSRC)gxfrac.h $(PSSRC)ostack.h:$(GLSRC)gscms.h -$(PSSRC)ostack.h:$(GLSRC)gsdevice.h $(PSSRC)ostack.h:$(GLSRC)gscspace.h +$(PSSRC)ostack.h:$(GLSRC)gsdevice.h $(PSSRC)ostack.h:$(GLSRC)gxarith.h -$(PSSRC)ostack.h:$(GLSRC)gsrefct.h -$(PSSRC)ostack.h:$(GLSRC)gsiparam.h $(PSSRC)ostack.h:$(GLSRC)gxhttile.h -$(PSSRC)ostack.h:$(GLSRC)gp.h -$(PSSRC)ostack.h:$(GLSRC)memento.h -$(PSSRC)ostack.h:$(GLSRC)gsparam.h -$(PSSRC)ostack.h:$(GLSRC)gsmatrix.h +$(PSSRC)ostack.h:$(GLSRC)gsiparam.h $(PSSRC)ostack.h:$(GLSRC)gxbitmap.h -$(PSSRC)ostack.h:$(GLSRC)srdline.h +$(PSSRC)ostack.h:$(GLSRC)gsmatrix.h +$(PSSRC)ostack.h:$(GLSRC)gsrefct.h +$(PSSRC)ostack.h:$(GLSRC)gsparam.h +$(PSSRC)ostack.h:$(GLSRC)gp.h +$(PSSRC)ostack.h:$(GLSRC)gsccolor.h $(PSSRC)ostack.h:$(GLSRC)gsstruct.h $(PSSRC)ostack.h:$(GLSRC)gxsync.h -$(PSSRC)ostack.h:$(GLSRC)gscsel.h +$(PSSRC)ostack.h:$(GLSRC)srdline.h $(PSSRC)ostack.h:$(GLSRC)scommon.h +$(PSSRC)ostack.h:$(GLSRC)memento.h +$(PSSRC)ostack.h:$(GLSRC)gscsel.h $(PSSRC)ostack.h:$(GLSRC)gsbitmap.h $(PSSRC)ostack.h:$(GLSRC)gsfname.h -$(PSSRC)ostack.h:$(GLSRC)gsccolor.h $(PSSRC)ostack.h:$(GLSRC)gsstype.h +$(PSSRC)ostack.h:$(GLSRC)stat_.h $(PSSRC)ostack.h:$(GLSRC)gsmemory.h $(PSSRC)ostack.h:$(GLSRC)gpsync.h -$(PSSRC)ostack.h:$(GLSRC)gpgetenv.h $(PSSRC)ostack.h:$(GLSRC)memory_.h +$(PSSRC)ostack.h:$(GLSRC)gpgetenv.h $(PSSRC)ostack.h:$(GLSRC)gslibctx.h $(PSSRC)ostack.h:$(GLSRC)gscdefs.h +$(PSSRC)ostack.h:$(GLSRC)gs_dll_call.h $(PSSRC)ostack.h:$(GLSRC)gsalloc.h +$(PSSRC)ostack.h:$(GLSRC)stdio_.h $(PSSRC)ostack.h:$(GLSRC)gxcindex.h -$(PSSRC)ostack.h:$(GLSRC)stdint_.h $(PSSRC)ostack.h:$(GLSRC)gsgstate.h -$(PSSRC)ostack.h:$(GLSRC)gs_dll_call.h -$(PSSRC)ostack.h:$(GLSRC)stdio_.h -$(PSSRC)ostack.h:$(GLSRC)gstypes.h +$(PSSRC)ostack.h:$(GLSRC)stdint_.h +$(PSSRC)ostack.h:$(GLSRC)gssprintf.h $(PSSRC)ostack.h:$(GLSRC)std.h +$(PSSRC)ostack.h:$(GLSRC)gstypes.h $(PSSRC)ostack.h:$(GLSRC)stdpre.h $(PSSRC)ostack.h:$(GLGEN)arch.h -$(PSSRC)ostack.h:$(GLSRC)gssprintf.h $(PSSRC)oper.h:$(PSSRC)ostack.h $(PSSRC)oper.h:$(PSSRC)icstate.h $(PSSRC)oper.h:$(PSSRC)idsdata.h @@ -4092,176 +4094,176 @@ $(PSSRC)oper.h:$(PSSRC)opdef.h $(PSSRC)oper.h:$(PSSRC)files.h $(PSSRC)oper.h:$(PSSRC)iddstack.h $(PSSRC)oper.h:$(PSSRC)istack.h -$(PSSRC)oper.h:$(GLSRC)stream.h $(PSSRC)oper.h:$(PSSRC)store.h $(PSSRC)oper.h:$(PSSRC)iosdata.h $(PSSRC)oper.h:$(PSSRC)iutil.h $(PSSRC)oper.h:$(PSSRC)ialloc.h -$(PSSRC)oper.h:$(PSSRC)ierrors.h $(PSSRC)oper.h:$(PSSRC)idosave.h +$(PSSRC)oper.h:$(PSSRC)ierrors.h $(PSSRC)oper.h:$(PSSRC)opcheck.h $(PSSRC)oper.h:$(PSSRC)isdata.h $(PSSRC)oper.h:$(PSSRC)imemory.h $(PSSRC)oper.h:$(PSSRC)opextern.h $(PSSRC)oper.h:$(PSSRC)ivmspace.h $(PSSRC)oper.h:$(PSSRC)iref.h -$(PSSRC)oper.h:$(GLSRC)gxalloc.h $(PSSRC)oper.h:$(GLSRC)gsgc.h +$(PSSRC)oper.h:$(GLSRC)gxalloc.h $(PSSRC)oper.h:$(GLSRC)gxobj.h $(PSSRC)oper.h:$(GLSRC)gsnamecl.h -$(PSSRC)oper.h:$(GLSRC)gxiodev.h +$(PSSRC)oper.h:$(GLSRC)stream.h $(PSSRC)oper.h:$(GLSRC)gxcspace.h -$(PSSRC)oper.h:$(GLSRC)stat_.h -$(PSSRC)oper.h:$(GLSRC)gxfrac.h +$(PSSRC)oper.h:$(GLSRC)gxiodev.h $(PSSRC)oper.h:$(GLSRC)gsdcolor.h +$(PSSRC)oper.h:$(GLSRC)gxfrac.h $(PSSRC)oper.h:$(GLSRC)gscms.h -$(PSSRC)oper.h:$(GLSRC)gsdevice.h $(PSSRC)oper.h:$(GLSRC)gscspace.h +$(PSSRC)oper.h:$(GLSRC)gsdevice.h $(PSSRC)oper.h:$(GLSRC)gxarith.h -$(PSSRC)oper.h:$(GLSRC)gsrefct.h -$(PSSRC)oper.h:$(GLSRC)gsiparam.h $(PSSRC)oper.h:$(GLSRC)gxhttile.h -$(PSSRC)oper.h:$(GLSRC)gp.h -$(PSSRC)oper.h:$(GLSRC)memento.h -$(PSSRC)oper.h:$(GLSRC)gsparam.h -$(PSSRC)oper.h:$(GLSRC)gsmatrix.h +$(PSSRC)oper.h:$(GLSRC)gsiparam.h $(PSSRC)oper.h:$(GLSRC)gxbitmap.h -$(PSSRC)oper.h:$(GLSRC)srdline.h +$(PSSRC)oper.h:$(GLSRC)gsmatrix.h +$(PSSRC)oper.h:$(GLSRC)gsrefct.h +$(PSSRC)oper.h:$(GLSRC)gsparam.h +$(PSSRC)oper.h:$(GLSRC)gp.h +$(PSSRC)oper.h:$(GLSRC)gsccolor.h $(PSSRC)oper.h:$(GLSRC)gsstruct.h -$(PSSRC)oper.h:$(GLSRC)gserrors.h $(PSSRC)oper.h:$(GLSRC)gxsync.h -$(PSSRC)oper.h:$(GLSRC)gscsel.h +$(PSSRC)oper.h:$(GLSRC)srdline.h +$(PSSRC)oper.h:$(GLSRC)gserrors.h $(PSSRC)oper.h:$(GLSRC)scommon.h +$(PSSRC)oper.h:$(GLSRC)memento.h +$(PSSRC)oper.h:$(GLSRC)gscsel.h $(PSSRC)oper.h:$(GLSRC)gsbitmap.h $(PSSRC)oper.h:$(GLSRC)gsfname.h -$(PSSRC)oper.h:$(GLSRC)gsccolor.h $(PSSRC)oper.h:$(GLSRC)gsstype.h +$(PSSRC)oper.h:$(GLSRC)stat_.h $(PSSRC)oper.h:$(GLSRC)gsmemory.h $(PSSRC)oper.h:$(GLSRC)gpsync.h -$(PSSRC)oper.h:$(GLSRC)gpgetenv.h $(PSSRC)oper.h:$(GLSRC)memory_.h +$(PSSRC)oper.h:$(GLSRC)gpgetenv.h $(PSSRC)oper.h:$(GLSRC)gslibctx.h $(PSSRC)oper.h:$(GLSRC)gscdefs.h +$(PSSRC)oper.h:$(GLSRC)gs_dll_call.h $(PSSRC)oper.h:$(GLSRC)gsalloc.h +$(PSSRC)oper.h:$(GLSRC)stdio_.h $(PSSRC)oper.h:$(GLSRC)gxcindex.h -$(PSSRC)oper.h:$(GLSRC)stdint_.h $(PSSRC)oper.h:$(GLSRC)gsgstate.h -$(PSSRC)oper.h:$(GLSRC)gs_dll_call.h -$(PSSRC)oper.h:$(GLSRC)stdio_.h -$(PSSRC)oper.h:$(GLSRC)gstypes.h +$(PSSRC)oper.h:$(GLSRC)stdint_.h +$(PSSRC)oper.h:$(GLSRC)gssprintf.h $(PSSRC)oper.h:$(GLSRC)std.h +$(PSSRC)oper.h:$(GLSRC)gstypes.h $(PSSRC)oper.h:$(GLSRC)stdpre.h $(PSSRC)oper.h:$(GLGEN)arch.h -$(PSSRC)oper.h:$(GLSRC)gssprintf.h $(PSSRC)btoken.h:$(PSSRC)iref.h $(PSSRC)btoken.h:$(GLSRC)gxalloc.h $(PSSRC)btoken.h:$(GLSRC)gxobj.h $(PSSRC)btoken.h:$(GLSRC)gsnamecl.h $(PSSRC)btoken.h:$(GLSRC)gxcspace.h -$(PSSRC)btoken.h:$(GLSRC)gxfrac.h $(PSSRC)btoken.h:$(GLSRC)gsdcolor.h +$(PSSRC)btoken.h:$(GLSRC)gxfrac.h $(PSSRC)btoken.h:$(GLSRC)gscms.h -$(PSSRC)btoken.h:$(GLSRC)gsdevice.h $(PSSRC)btoken.h:$(GLSRC)gscspace.h +$(PSSRC)btoken.h:$(GLSRC)gsdevice.h $(PSSRC)btoken.h:$(GLSRC)gxarith.h -$(PSSRC)btoken.h:$(GLSRC)gsrefct.h -$(PSSRC)btoken.h:$(GLSRC)gsiparam.h $(PSSRC)btoken.h:$(GLSRC)gxhttile.h -$(PSSRC)btoken.h:$(GLSRC)memento.h -$(PSSRC)btoken.h:$(GLSRC)gsparam.h -$(PSSRC)btoken.h:$(GLSRC)gsmatrix.h +$(PSSRC)btoken.h:$(GLSRC)gsiparam.h $(PSSRC)btoken.h:$(GLSRC)gxbitmap.h +$(PSSRC)btoken.h:$(GLSRC)gsmatrix.h +$(PSSRC)btoken.h:$(GLSRC)gsrefct.h +$(PSSRC)btoken.h:$(GLSRC)gsparam.h +$(PSSRC)btoken.h:$(GLSRC)gsccolor.h $(PSSRC)btoken.h:$(GLSRC)gsstruct.h $(PSSRC)btoken.h:$(GLSRC)gxsync.h -$(PSSRC)btoken.h:$(GLSRC)gscsel.h $(PSSRC)btoken.h:$(GLSRC)scommon.h +$(PSSRC)btoken.h:$(GLSRC)memento.h +$(PSSRC)btoken.h:$(GLSRC)gscsel.h $(PSSRC)btoken.h:$(GLSRC)gsbitmap.h -$(PSSRC)btoken.h:$(GLSRC)gsccolor.h $(PSSRC)btoken.h:$(GLSRC)gsstype.h $(PSSRC)btoken.h:$(GLSRC)gsmemory.h $(PSSRC)btoken.h:$(GLSRC)gpsync.h $(PSSRC)btoken.h:$(GLSRC)gslibctx.h +$(PSSRC)btoken.h:$(GLSRC)gs_dll_call.h $(PSSRC)btoken.h:$(GLSRC)gsalloc.h +$(PSSRC)btoken.h:$(GLSRC)stdio_.h $(PSSRC)btoken.h:$(GLSRC)gxcindex.h -$(PSSRC)btoken.h:$(GLSRC)stdint_.h $(PSSRC)btoken.h:$(GLSRC)gsgstate.h -$(PSSRC)btoken.h:$(GLSRC)gs_dll_call.h -$(PSSRC)btoken.h:$(GLSRC)stdio_.h -$(PSSRC)btoken.h:$(GLSRC)gstypes.h +$(PSSRC)btoken.h:$(GLSRC)stdint_.h +$(PSSRC)btoken.h:$(GLSRC)gssprintf.h $(PSSRC)btoken.h:$(GLSRC)std.h +$(PSSRC)btoken.h:$(GLSRC)gstypes.h $(PSSRC)btoken.h:$(GLSRC)stdpre.h $(PSSRC)btoken.h:$(GLGEN)arch.h -$(PSSRC)btoken.h:$(GLSRC)gssprintf.h -$(PSSRC)files.h:$(GLSRC)stream.h $(PSSRC)files.h:$(PSSRC)store.h $(PSSRC)files.h:$(PSSRC)ialloc.h $(PSSRC)files.h:$(PSSRC)idosave.h $(PSSRC)files.h:$(PSSRC)imemory.h $(PSSRC)files.h:$(PSSRC)ivmspace.h $(PSSRC)files.h:$(PSSRC)iref.h -$(PSSRC)files.h:$(GLSRC)gxalloc.h $(PSSRC)files.h:$(GLSRC)gsgc.h +$(PSSRC)files.h:$(GLSRC)gxalloc.h $(PSSRC)files.h:$(GLSRC)gxobj.h $(PSSRC)files.h:$(GLSRC)gsnamecl.h -$(PSSRC)files.h:$(GLSRC)gxiodev.h +$(PSSRC)files.h:$(GLSRC)stream.h $(PSSRC)files.h:$(GLSRC)gxcspace.h -$(PSSRC)files.h:$(GLSRC)stat_.h -$(PSSRC)files.h:$(GLSRC)gxfrac.h +$(PSSRC)files.h:$(GLSRC)gxiodev.h $(PSSRC)files.h:$(GLSRC)gsdcolor.h +$(PSSRC)files.h:$(GLSRC)gxfrac.h $(PSSRC)files.h:$(GLSRC)gscms.h -$(PSSRC)files.h:$(GLSRC)gsdevice.h $(PSSRC)files.h:$(GLSRC)gscspace.h +$(PSSRC)files.h:$(GLSRC)gsdevice.h $(PSSRC)files.h:$(GLSRC)gxarith.h -$(PSSRC)files.h:$(GLSRC)gsrefct.h -$(PSSRC)files.h:$(GLSRC)gsiparam.h $(PSSRC)files.h:$(GLSRC)gxhttile.h -$(PSSRC)files.h:$(GLSRC)gp.h -$(PSSRC)files.h:$(GLSRC)memento.h -$(PSSRC)files.h:$(GLSRC)gsparam.h -$(PSSRC)files.h:$(GLSRC)gsmatrix.h +$(PSSRC)files.h:$(GLSRC)gsiparam.h $(PSSRC)files.h:$(GLSRC)gxbitmap.h -$(PSSRC)files.h:$(GLSRC)srdline.h +$(PSSRC)files.h:$(GLSRC)gsmatrix.h +$(PSSRC)files.h:$(GLSRC)gsrefct.h +$(PSSRC)files.h:$(GLSRC)gsparam.h +$(PSSRC)files.h:$(GLSRC)gp.h +$(PSSRC)files.h:$(GLSRC)gsccolor.h $(PSSRC)files.h:$(GLSRC)gsstruct.h $(PSSRC)files.h:$(GLSRC)gxsync.h -$(PSSRC)files.h:$(GLSRC)gscsel.h +$(PSSRC)files.h:$(GLSRC)srdline.h $(PSSRC)files.h:$(GLSRC)scommon.h +$(PSSRC)files.h:$(GLSRC)memento.h +$(PSSRC)files.h:$(GLSRC)gscsel.h $(PSSRC)files.h:$(GLSRC)gsbitmap.h $(PSSRC)files.h:$(GLSRC)gsfname.h -$(PSSRC)files.h:$(GLSRC)gsccolor.h $(PSSRC)files.h:$(GLSRC)gsstype.h +$(PSSRC)files.h:$(GLSRC)stat_.h $(PSSRC)files.h:$(GLSRC)gsmemory.h $(PSSRC)files.h:$(GLSRC)gpsync.h -$(PSSRC)files.h:$(GLSRC)gpgetenv.h $(PSSRC)files.h:$(GLSRC)memory_.h +$(PSSRC)files.h:$(GLSRC)gpgetenv.h $(PSSRC)files.h:$(GLSRC)gslibctx.h $(PSSRC)files.h:$(GLSRC)gscdefs.h +$(PSSRC)files.h:$(GLSRC)gs_dll_call.h $(PSSRC)files.h:$(GLSRC)gsalloc.h +$(PSSRC)files.h:$(GLSRC)stdio_.h $(PSSRC)files.h:$(GLSRC)gxcindex.h -$(PSSRC)files.h:$(GLSRC)stdint_.h $(PSSRC)files.h:$(GLSRC)gsgstate.h -$(PSSRC)files.h:$(GLSRC)gs_dll_call.h -$(PSSRC)files.h:$(GLSRC)stdio_.h -$(PSSRC)files.h:$(GLSRC)gstypes.h +$(PSSRC)files.h:$(GLSRC)stdint_.h +$(PSSRC)files.h:$(GLSRC)gssprintf.h $(PSSRC)files.h:$(GLSRC)std.h +$(PSSRC)files.h:$(GLSRC)gstypes.h $(PSSRC)files.h:$(GLSRC)stdpre.h $(PSSRC)files.h:$(GLGEN)arch.h -$(PSSRC)files.h:$(GLSRC)gssprintf.h $(PSSRC)psapi.h:$(GLSRC)gsdevice.h -$(PSSRC)psapi.h:$(GLSRC)gsparam.h $(PSSRC)psapi.h:$(GLSRC)gsmatrix.h +$(PSSRC)psapi.h:$(GLSRC)gsparam.h $(PSSRC)psapi.h:$(GLSRC)scommon.h $(PSSRC)psapi.h:$(GLSRC)gsstype.h $(PSSRC)psapi.h:$(GLSRC)gsmemory.h $(PSSRC)psapi.h:$(GLSRC)gslibctx.h -$(PSSRC)psapi.h:$(GLSRC)stdint_.h -$(PSSRC)psapi.h:$(GLSRC)gsgstate.h $(PSSRC)psapi.h:$(GLSRC)gs_dll_call.h $(PSSRC)psapi.h:$(GLSRC)stdio_.h -$(PSSRC)psapi.h:$(GLSRC)gstypes.h +$(PSSRC)psapi.h:$(GLSRC)gsgstate.h +$(PSSRC)psapi.h:$(GLSRC)stdint_.h +$(PSSRC)psapi.h:$(GLSRC)gssprintf.h $(PSSRC)psapi.h:$(GLSRC)std.h +$(PSSRC)psapi.h:$(GLSRC)gstypes.h $(PSSRC)psapi.h:$(GLSRC)stdpre.h $(PSSRC)psapi.h:$(GLGEN)arch.h -$(PSSRC)psapi.h:$(GLSRC)gssprintf.h $(PSSRC)ichar.h:$(PSSRC)iostack.h $(PSSRC)ichar.h:$(PSSRC)istack.h $(PSSRC)ichar.h:$(PSSRC)iosdata.h @@ -4270,54 +4272,54 @@ $(PSSRC)ichar.h:$(PSSRC)isdata.h $(PSSRC)ichar.h:$(PSSRC)imemory.h $(PSSRC)ichar.h:$(PSSRC)ivmspace.h $(PSSRC)ichar.h:$(PSSRC)iref.h -$(PSSRC)ichar.h:$(GLSRC)gxalloc.h $(PSSRC)ichar.h:$(GLSRC)gsgc.h -$(PSSRC)ichar.h:$(GLSRC)gxobj.h +$(PSSRC)ichar.h:$(GLSRC)gxalloc.h $(PSSRC)ichar.h:$(GLSRC)gstext.h +$(PSSRC)ichar.h:$(GLSRC)gxobj.h $(PSSRC)ichar.h:$(GLSRC)gsnamecl.h $(PSSRC)ichar.h:$(GLSRC)gxcspace.h +$(PSSRC)ichar.h:$(GLSRC)gsdcolor.h $(PSSRC)ichar.h:$(GLSRC)gsfont.h -$(PSSRC)ichar.h:$(GLSRC)gxpath.h -$(PSSRC)ichar.h:$(GLSRC)gspenum.h $(PSSRC)ichar.h:$(GLSRC)gxfrac.h -$(PSSRC)ichar.h:$(GLSRC)gslparam.h -$(PSSRC)ichar.h:$(GLSRC)gsdcolor.h -$(PSSRC)ichar.h:$(GLSRC)gsrect.h $(PSSRC)ichar.h:$(GLSRC)gscms.h -$(PSSRC)ichar.h:$(GLSRC)gsdevice.h $(PSSRC)ichar.h:$(GLSRC)gscspace.h +$(PSSRC)ichar.h:$(GLSRC)gxpath.h +$(PSSRC)ichar.h:$(GLSRC)gsdevice.h $(PSSRC)ichar.h:$(GLSRC)gxarith.h +$(PSSRC)ichar.h:$(GLSRC)gspenum.h +$(PSSRC)ichar.h:$(GLSRC)gxhttile.h +$(PSSRC)ichar.h:$(GLSRC)gsrect.h +$(PSSRC)ichar.h:$(GLSRC)gslparam.h +$(PSSRC)ichar.h:$(GLSRC)gsiparam.h +$(PSSRC)ichar.h:$(GLSRC)gxbitmap.h +$(PSSRC)ichar.h:$(GLSRC)gsmatrix.h +$(PSSRC)ichar.h:$(GLSRC)gscpm.h $(PSSRC)ichar.h:$(GLSRC)gxfixed.h $(PSSRC)ichar.h:$(GLSRC)gsrefct.h -$(PSSRC)ichar.h:$(GLSRC)gscpm.h -$(PSSRC)ichar.h:$(GLSRC)gsiparam.h -$(PSSRC)ichar.h:$(GLSRC)gxhttile.h -$(PSSRC)ichar.h:$(GLSRC)memento.h $(PSSRC)ichar.h:$(GLSRC)gsparam.h -$(PSSRC)ichar.h:$(GLSRC)gsmatrix.h -$(PSSRC)ichar.h:$(GLSRC)gxbitmap.h +$(PSSRC)ichar.h:$(GLSRC)gsccolor.h $(PSSRC)ichar.h:$(GLSRC)gsstruct.h $(PSSRC)ichar.h:$(GLSRC)gxsync.h -$(PSSRC)ichar.h:$(GLSRC)gscsel.h $(PSSRC)ichar.h:$(GLSRC)scommon.h +$(PSSRC)ichar.h:$(GLSRC)memento.h +$(PSSRC)ichar.h:$(GLSRC)gscsel.h $(PSSRC)ichar.h:$(GLSRC)gsbitmap.h -$(PSSRC)ichar.h:$(GLSRC)gsccolor.h $(PSSRC)ichar.h:$(GLSRC)gsstype.h $(PSSRC)ichar.h:$(GLSRC)gsmemory.h $(PSSRC)ichar.h:$(GLSRC)gpsync.h $(PSSRC)ichar.h:$(GLSRC)gslibctx.h +$(PSSRC)ichar.h:$(GLSRC)gs_dll_call.h $(PSSRC)ichar.h:$(GLSRC)gsalloc.h +$(PSSRC)ichar.h:$(GLSRC)stdio_.h $(PSSRC)ichar.h:$(GLSRC)gxcindex.h -$(PSSRC)ichar.h:$(GLSRC)stdint_.h $(PSSRC)ichar.h:$(GLSRC)gsgstate.h +$(PSSRC)ichar.h:$(GLSRC)stdint_.h +$(PSSRC)ichar.h:$(GLSRC)gssprintf.h $(PSSRC)ichar.h:$(GLSRC)gsccode.h -$(PSSRC)ichar.h:$(GLSRC)gs_dll_call.h -$(PSSRC)ichar.h:$(GLSRC)stdio_.h -$(PSSRC)ichar.h:$(GLSRC)gstypes.h $(PSSRC)ichar.h:$(GLSRC)std.h +$(PSSRC)ichar.h:$(GLSRC)gstypes.h $(PSSRC)ichar.h:$(GLSRC)stdpre.h $(PSSRC)ichar.h:$(GLGEN)arch.h -$(PSSRC)ichar.h:$(GLSRC)gssprintf.h $(PSSRC)ichar1.h:$(GLSRC)gstype1.h $(PSSRC)ichar1.h:$(GLSRC)gxfont.h $(PSSRC)ichar1.h:$(GLSRC)gspath.h @@ -4329,240 +4331,240 @@ $(PSSRC)ichar1.h:$(GLSRC)gsnotify.h $(PSSRC)ichar1.h:$(GLSRC)gsfcmap.h $(PSSRC)ichar1.h:$(PSSRC)iref.h $(PSSRC)ichar1.h:$(GLSRC)gxalloc.h -$(PSSRC)ichar1.h:$(GLSRC)gxobj.h $(PSSRC)ichar1.h:$(GLSRC)gstext.h +$(PSSRC)ichar1.h:$(GLSRC)gxobj.h $(PSSRC)ichar1.h:$(GLSRC)gsnamecl.h $(PSSRC)ichar1.h:$(GLSRC)gxcspace.h +$(PSSRC)ichar1.h:$(GLSRC)gsuid.h +$(PSSRC)ichar1.h:$(GLSRC)gsdcolor.h $(PSSRC)ichar1.h:$(GLSRC)gsfont.h -$(PSSRC)ichar1.h:$(GLSRC)gxpath.h -$(PSSRC)ichar1.h:$(GLSRC)gspenum.h +$(PSSRC)ichar1.h:$(GLSRC)gxftype.h $(PSSRC)ichar1.h:$(GLSRC)gxfrac.h -$(PSSRC)ichar1.h:$(GLSRC)gslparam.h -$(PSSRC)ichar1.h:$(GLSRC)gsdcolor.h -$(PSSRC)ichar1.h:$(GLSRC)gsrect.h $(PSSRC)ichar1.h:$(GLSRC)gscms.h -$(PSSRC)ichar1.h:$(GLSRC)gxftype.h -$(PSSRC)ichar1.h:$(GLSRC)gsdevice.h $(PSSRC)ichar1.h:$(GLSRC)gscspace.h -$(PSSRC)ichar1.h:$(GLSRC)gsuid.h +$(PSSRC)ichar1.h:$(GLSRC)gxpath.h +$(PSSRC)ichar1.h:$(GLSRC)gsdevice.h $(PSSRC)ichar1.h:$(GLSRC)gxarith.h +$(PSSRC)ichar1.h:$(GLSRC)gspenum.h +$(PSSRC)ichar1.h:$(GLSRC)gxhttile.h +$(PSSRC)ichar1.h:$(GLSRC)gsrect.h +$(PSSRC)ichar1.h:$(GLSRC)gslparam.h +$(PSSRC)ichar1.h:$(GLSRC)gsiparam.h +$(PSSRC)ichar1.h:$(GLSRC)gxbitmap.h +$(PSSRC)ichar1.h:$(GLSRC)gsmatrix.h +$(PSSRC)ichar1.h:$(GLSRC)gscpm.h $(PSSRC)ichar1.h:$(GLSRC)gxfixed.h $(PSSRC)ichar1.h:$(GLSRC)gsrefct.h -$(PSSRC)ichar1.h:$(GLSRC)gscpm.h -$(PSSRC)ichar1.h:$(GLSRC)gsiparam.h -$(PSSRC)ichar1.h:$(GLSRC)gxhttile.h -$(PSSRC)ichar1.h:$(GLSRC)memento.h $(PSSRC)ichar1.h:$(GLSRC)gsparam.h -$(PSSRC)ichar1.h:$(GLSRC)gsmatrix.h -$(PSSRC)ichar1.h:$(GLSRC)gxbitmap.h +$(PSSRC)ichar1.h:$(GLSRC)gsccolor.h $(PSSRC)ichar1.h:$(GLSRC)gsstruct.h $(PSSRC)ichar1.h:$(GLSRC)gxsync.h -$(PSSRC)ichar1.h:$(GLSRC)gscsel.h $(PSSRC)ichar1.h:$(GLSRC)scommon.h +$(PSSRC)ichar1.h:$(GLSRC)memento.h +$(PSSRC)ichar1.h:$(GLSRC)gscsel.h $(PSSRC)ichar1.h:$(GLSRC)gsbitmap.h -$(PSSRC)ichar1.h:$(GLSRC)gsccolor.h $(PSSRC)ichar1.h:$(GLSRC)gsstype.h $(PSSRC)ichar1.h:$(GLSRC)gsmemory.h $(PSSRC)ichar1.h:$(GLSRC)gpsync.h $(PSSRC)ichar1.h:$(GLSRC)gslibctx.h +$(PSSRC)ichar1.h:$(GLSRC)gs_dll_call.h $(PSSRC)ichar1.h:$(GLSRC)gsalloc.h +$(PSSRC)ichar1.h:$(GLSRC)stdio_.h $(PSSRC)ichar1.h:$(GLSRC)gxcindex.h -$(PSSRC)ichar1.h:$(GLSRC)stdint_.h $(PSSRC)ichar1.h:$(GLSRC)gsgstate.h +$(PSSRC)ichar1.h:$(GLSRC)stdint_.h +$(PSSRC)ichar1.h:$(GLSRC)gssprintf.h $(PSSRC)ichar1.h:$(GLSRC)gsccode.h -$(PSSRC)ichar1.h:$(GLSRC)gs_dll_call.h -$(PSSRC)ichar1.h:$(GLSRC)stdio_.h -$(PSSRC)ichar1.h:$(GLSRC)gstypes.h $(PSSRC)ichar1.h:$(GLSRC)std.h +$(PSSRC)ichar1.h:$(GLSRC)gstypes.h $(PSSRC)ichar1.h:$(GLSRC)stdpre.h $(PSSRC)ichar1.h:$(GLGEN)arch.h -$(PSSRC)ichar1.h:$(GLSRC)gssprintf.h $(PSSRC)icharout.h:$(GLSRC)gsgdata.h $(PSSRC)icharout.h:$(GLSRC)gsgcache.h $(PSSRC)icharout.h:$(GLSRC)gxfapi.h $(PSSRC)icharout.h:$(PSSRC)iref.h $(PSSRC)icharout.h:$(GLSRC)gxalloc.h -$(PSSRC)icharout.h:$(GLSRC)gxobj.h $(PSSRC)icharout.h:$(GLSRC)gstext.h +$(PSSRC)icharout.h:$(GLSRC)gxobj.h $(PSSRC)icharout.h:$(GLSRC)gsnamecl.h $(PSSRC)icharout.h:$(GLSRC)gxcspace.h +$(PSSRC)icharout.h:$(GLSRC)gsdcolor.h $(PSSRC)icharout.h:$(GLSRC)gsfont.h -$(PSSRC)icharout.h:$(GLSRC)gxpath.h -$(PSSRC)icharout.h:$(GLSRC)gspenum.h $(PSSRC)icharout.h:$(GLSRC)gxfrac.h -$(PSSRC)icharout.h:$(GLSRC)gslparam.h -$(PSSRC)icharout.h:$(GLSRC)gsdcolor.h -$(PSSRC)icharout.h:$(GLSRC)gsrect.h $(PSSRC)icharout.h:$(GLSRC)gscms.h -$(PSSRC)icharout.h:$(GLSRC)gsdevice.h $(PSSRC)icharout.h:$(GLSRC)gscspace.h +$(PSSRC)icharout.h:$(GLSRC)gxpath.h +$(PSSRC)icharout.h:$(GLSRC)gsdevice.h $(PSSRC)icharout.h:$(GLSRC)gxarith.h +$(PSSRC)icharout.h:$(GLSRC)gspenum.h +$(PSSRC)icharout.h:$(GLSRC)gxhttile.h +$(PSSRC)icharout.h:$(GLSRC)gsrect.h +$(PSSRC)icharout.h:$(GLSRC)gslparam.h +$(PSSRC)icharout.h:$(GLSRC)gsiparam.h +$(PSSRC)icharout.h:$(GLSRC)gxbitmap.h +$(PSSRC)icharout.h:$(GLSRC)gsmatrix.h +$(PSSRC)icharout.h:$(GLSRC)gscpm.h $(PSSRC)icharout.h:$(GLSRC)gxfixed.h $(PSSRC)icharout.h:$(GLSRC)gsrefct.h -$(PSSRC)icharout.h:$(GLSRC)gscpm.h -$(PSSRC)icharout.h:$(GLSRC)gsiparam.h -$(PSSRC)icharout.h:$(GLSRC)gxhttile.h -$(PSSRC)icharout.h:$(GLSRC)memento.h $(PSSRC)icharout.h:$(GLSRC)gsparam.h -$(PSSRC)icharout.h:$(GLSRC)gsmatrix.h -$(PSSRC)icharout.h:$(GLSRC)gxbitmap.h +$(PSSRC)icharout.h:$(GLSRC)gsccolor.h $(PSSRC)icharout.h:$(GLSRC)gsstruct.h $(PSSRC)icharout.h:$(GLSRC)gxsync.h -$(PSSRC)icharout.h:$(GLSRC)gscsel.h $(PSSRC)icharout.h:$(GLSRC)scommon.h +$(PSSRC)icharout.h:$(GLSRC)memento.h +$(PSSRC)icharout.h:$(GLSRC)gscsel.h $(PSSRC)icharout.h:$(GLSRC)gsbitmap.h -$(PSSRC)icharout.h:$(GLSRC)gsccolor.h $(PSSRC)icharout.h:$(GLSRC)gsstype.h $(PSSRC)icharout.h:$(GLSRC)gsmemory.h $(PSSRC)icharout.h:$(GLSRC)gpsync.h $(PSSRC)icharout.h:$(GLSRC)gslibctx.h +$(PSSRC)icharout.h:$(GLSRC)gs_dll_call.h $(PSSRC)icharout.h:$(GLSRC)gsalloc.h +$(PSSRC)icharout.h:$(GLSRC)stdio_.h $(PSSRC)icharout.h:$(GLSRC)gxcindex.h -$(PSSRC)icharout.h:$(GLSRC)stdint_.h $(PSSRC)icharout.h:$(GLSRC)gsgstate.h +$(PSSRC)icharout.h:$(GLSRC)stdint_.h +$(PSSRC)icharout.h:$(GLSRC)gssprintf.h $(PSSRC)icharout.h:$(GLSRC)gsccode.h -$(PSSRC)icharout.h:$(GLSRC)gs_dll_call.h -$(PSSRC)icharout.h:$(GLSRC)stdio_.h -$(PSSRC)icharout.h:$(GLSRC)gstypes.h $(PSSRC)icharout.h:$(GLSRC)std.h +$(PSSRC)icharout.h:$(GLSRC)gstypes.h $(PSSRC)icharout.h:$(GLSRC)stdpre.h $(PSSRC)icharout.h:$(GLGEN)arch.h -$(PSSRC)icharout.h:$(GLSRC)gssprintf.h $(PSSRC)icolor.h:$(PSSRC)iref.h $(PSSRC)icolor.h:$(GLSRC)gxalloc.h $(PSSRC)icolor.h:$(GLSRC)gxobj.h $(PSSRC)icolor.h:$(GLSRC)gsnamecl.h $(PSSRC)icolor.h:$(GLSRC)gxcspace.h -$(PSSRC)icolor.h:$(GLSRC)gxtmap.h -$(PSSRC)icolor.h:$(GLSRC)gxfrac.h $(PSSRC)icolor.h:$(GLSRC)gsdcolor.h +$(PSSRC)icolor.h:$(GLSRC)gxfrac.h $(PSSRC)icolor.h:$(GLSRC)gscms.h -$(PSSRC)icolor.h:$(GLSRC)gsdevice.h $(PSSRC)icolor.h:$(GLSRC)gscspace.h +$(PSSRC)icolor.h:$(GLSRC)gsdevice.h $(PSSRC)icolor.h:$(GLSRC)gxarith.h -$(PSSRC)icolor.h:$(GLSRC)gsrefct.h -$(PSSRC)icolor.h:$(GLSRC)gsiparam.h $(PSSRC)icolor.h:$(GLSRC)gxhttile.h -$(PSSRC)icolor.h:$(GLSRC)memento.h -$(PSSRC)icolor.h:$(GLSRC)gsparam.h -$(PSSRC)icolor.h:$(GLSRC)gsmatrix.h +$(PSSRC)icolor.h:$(GLSRC)gsiparam.h $(PSSRC)icolor.h:$(GLSRC)gxbitmap.h +$(PSSRC)icolor.h:$(GLSRC)gsmatrix.h +$(PSSRC)icolor.h:$(GLSRC)gsrefct.h +$(PSSRC)icolor.h:$(GLSRC)gsparam.h +$(PSSRC)icolor.h:$(GLSRC)gsccolor.h $(PSSRC)icolor.h:$(GLSRC)gsstruct.h $(PSSRC)icolor.h:$(GLSRC)gxsync.h -$(PSSRC)icolor.h:$(GLSRC)gscsel.h $(PSSRC)icolor.h:$(GLSRC)scommon.h +$(PSSRC)icolor.h:$(GLSRC)memento.h +$(PSSRC)icolor.h:$(GLSRC)gscsel.h $(PSSRC)icolor.h:$(GLSRC)gsbitmap.h -$(PSSRC)icolor.h:$(GLSRC)gsccolor.h $(PSSRC)icolor.h:$(GLSRC)gsstype.h +$(PSSRC)icolor.h:$(GLSRC)gxtmap.h $(PSSRC)icolor.h:$(GLSRC)gsmemory.h $(PSSRC)icolor.h:$(GLSRC)gpsync.h $(PSSRC)icolor.h:$(GLSRC)gslibctx.h +$(PSSRC)icolor.h:$(GLSRC)gs_dll_call.h $(PSSRC)icolor.h:$(GLSRC)gsalloc.h +$(PSSRC)icolor.h:$(GLSRC)stdio_.h $(PSSRC)icolor.h:$(GLSRC)gxcindex.h -$(PSSRC)icolor.h:$(GLSRC)stdint_.h $(PSSRC)icolor.h:$(GLSRC)gsgstate.h -$(PSSRC)icolor.h:$(GLSRC)gs_dll_call.h -$(PSSRC)icolor.h:$(GLSRC)stdio_.h -$(PSSRC)icolor.h:$(GLSRC)gstypes.h +$(PSSRC)icolor.h:$(GLSRC)stdint_.h +$(PSSRC)icolor.h:$(GLSRC)gssprintf.h $(PSSRC)icolor.h:$(GLSRC)std.h +$(PSSRC)icolor.h:$(GLSRC)gstypes.h $(PSSRC)icolor.h:$(GLSRC)stdpre.h $(PSSRC)icolor.h:$(GLGEN)arch.h -$(PSSRC)icolor.h:$(GLSRC)gssprintf.h $(PSSRC)icremap.h:$(PSSRC)igstate.h $(PSSRC)icremap.h:$(GLSRC)gsstate.h $(PSSRC)icremap.h:$(GLSRC)gsovrc.h $(PSSRC)icremap.h:$(GLSRC)gscolor.h -$(PSSRC)icremap.h:$(GLSRC)gsline.h $(PSSRC)icremap.h:$(GLSRC)gxcomp.h +$(PSSRC)icremap.h:$(GLSRC)gsline.h $(PSSRC)icremap.h:$(PSSRC)istruct.h $(PSSRC)icremap.h:$(GLSRC)gxbitfmt.h $(PSSRC)icremap.h:$(PSSRC)imemory.h $(PSSRC)icremap.h:$(PSSRC)ivmspace.h $(PSSRC)icremap.h:$(GLSRC)gsht.h $(PSSRC)icremap.h:$(PSSRC)iref.h -$(PSSRC)icremap.h:$(GLSRC)gxalloc.h $(PSSRC)icremap.h:$(GLSRC)gsgc.h +$(PSSRC)icremap.h:$(GLSRC)gxalloc.h $(PSSRC)icremap.h:$(GLSRC)gxobj.h -$(PSSRC)icremap.h:$(GLSRC)gxstate.h $(PSSRC)icremap.h:$(GLSRC)gsnamecl.h +$(PSSRC)icremap.h:$(GLSRC)gxstate.h $(PSSRC)icremap.h:$(GLSRC)gxcspace.h -$(PSSRC)icremap.h:$(GLSRC)gxtmap.h -$(PSSRC)icremap.h:$(GLSRC)gxfrac.h -$(PSSRC)icremap.h:$(GLSRC)gslparam.h $(PSSRC)icremap.h:$(GLSRC)gsdcolor.h +$(PSSRC)icremap.h:$(GLSRC)gxfrac.h $(PSSRC)icremap.h:$(GLSRC)gscms.h -$(PSSRC)icremap.h:$(GLSRC)gsdevice.h $(PSSRC)icremap.h:$(GLSRC)gscspace.h +$(PSSRC)icremap.h:$(GLSRC)gsdevice.h $(PSSRC)icremap.h:$(GLSRC)gxarith.h -$(PSSRC)icremap.h:$(GLSRC)gsrefct.h -$(PSSRC)icremap.h:$(GLSRC)gscpm.h -$(PSSRC)icremap.h:$(GLSRC)gsiparam.h $(PSSRC)icremap.h:$(GLSRC)gxhttile.h -$(PSSRC)icremap.h:$(GLSRC)memento.h -$(PSSRC)icremap.h:$(GLSRC)gsparam.h -$(PSSRC)icremap.h:$(GLSRC)gsmatrix.h +$(PSSRC)icremap.h:$(GLSRC)gslparam.h +$(PSSRC)icremap.h:$(GLSRC)gsiparam.h $(PSSRC)icremap.h:$(GLSRC)gxbitmap.h +$(PSSRC)icremap.h:$(GLSRC)gsmatrix.h +$(PSSRC)icremap.h:$(GLSRC)gscpm.h +$(PSSRC)icremap.h:$(GLSRC)gsrefct.h +$(PSSRC)icremap.h:$(GLSRC)gsparam.h +$(PSSRC)icremap.h:$(GLSRC)gsccolor.h $(PSSRC)icremap.h:$(GLSRC)gsstruct.h $(PSSRC)icremap.h:$(GLSRC)gxsync.h -$(PSSRC)icremap.h:$(GLSRC)gscsel.h $(PSSRC)icremap.h:$(GLSRC)scommon.h +$(PSSRC)icremap.h:$(GLSRC)memento.h +$(PSSRC)icremap.h:$(GLSRC)gscsel.h $(PSSRC)icremap.h:$(GLSRC)gsbitmap.h -$(PSSRC)icremap.h:$(GLSRC)gsccolor.h $(PSSRC)icremap.h:$(GLSRC)gsstype.h +$(PSSRC)icremap.h:$(GLSRC)gxtmap.h $(PSSRC)icremap.h:$(GLSRC)gsmemory.h $(PSSRC)icremap.h:$(GLSRC)gpsync.h $(PSSRC)icremap.h:$(GLSRC)gslibctx.h +$(PSSRC)icremap.h:$(GLSRC)gs_dll_call.h $(PSSRC)icremap.h:$(GLSRC)gsalloc.h +$(PSSRC)icremap.h:$(GLSRC)stdio_.h $(PSSRC)icremap.h:$(GLSRC)gscompt.h $(PSSRC)icremap.h:$(GLSRC)gxcindex.h -$(PSSRC)icremap.h:$(GLSRC)stdint_.h $(PSSRC)icremap.h:$(GLSRC)gsgstate.h -$(PSSRC)icremap.h:$(GLSRC)gs_dll_call.h -$(PSSRC)icremap.h:$(GLSRC)stdio_.h -$(PSSRC)icremap.h:$(GLSRC)gstypes.h +$(PSSRC)icremap.h:$(GLSRC)stdint_.h +$(PSSRC)icremap.h:$(GLSRC)gssprintf.h $(PSSRC)icremap.h:$(GLSRC)std.h +$(PSSRC)icremap.h:$(GLSRC)gstypes.h $(PSSRC)icremap.h:$(GLSRC)stdpre.h $(PSSRC)icremap.h:$(GLGEN)arch.h -$(PSSRC)icremap.h:$(GLSRC)gssprintf.h $(PSSRC)icsmap.h:$(PSSRC)iref.h $(PSSRC)icsmap.h:$(GLSRC)gxalloc.h $(PSSRC)icsmap.h:$(GLSRC)gxobj.h $(PSSRC)icsmap.h:$(GLSRC)gsnamecl.h $(PSSRC)icsmap.h:$(GLSRC)gxcspace.h -$(PSSRC)icsmap.h:$(GLSRC)gxfrac.h $(PSSRC)icsmap.h:$(GLSRC)gsdcolor.h +$(PSSRC)icsmap.h:$(GLSRC)gxfrac.h $(PSSRC)icsmap.h:$(GLSRC)gscms.h -$(PSSRC)icsmap.h:$(GLSRC)gsdevice.h $(PSSRC)icsmap.h:$(GLSRC)gscspace.h +$(PSSRC)icsmap.h:$(GLSRC)gsdevice.h $(PSSRC)icsmap.h:$(GLSRC)gxarith.h -$(PSSRC)icsmap.h:$(GLSRC)gsrefct.h -$(PSSRC)icsmap.h:$(GLSRC)gsiparam.h $(PSSRC)icsmap.h:$(GLSRC)gxhttile.h -$(PSSRC)icsmap.h:$(GLSRC)memento.h -$(PSSRC)icsmap.h:$(GLSRC)gsparam.h -$(PSSRC)icsmap.h:$(GLSRC)gsmatrix.h +$(PSSRC)icsmap.h:$(GLSRC)gsiparam.h $(PSSRC)icsmap.h:$(GLSRC)gxbitmap.h +$(PSSRC)icsmap.h:$(GLSRC)gsmatrix.h +$(PSSRC)icsmap.h:$(GLSRC)gsrefct.h +$(PSSRC)icsmap.h:$(GLSRC)gsparam.h +$(PSSRC)icsmap.h:$(GLSRC)gsccolor.h $(PSSRC)icsmap.h:$(GLSRC)gsstruct.h $(PSSRC)icsmap.h:$(GLSRC)gxsync.h -$(PSSRC)icsmap.h:$(GLSRC)gscsel.h $(PSSRC)icsmap.h:$(GLSRC)scommon.h +$(PSSRC)icsmap.h:$(GLSRC)memento.h +$(PSSRC)icsmap.h:$(GLSRC)gscsel.h $(PSSRC)icsmap.h:$(GLSRC)gsbitmap.h -$(PSSRC)icsmap.h:$(GLSRC)gsccolor.h $(PSSRC)icsmap.h:$(GLSRC)gsstype.h $(PSSRC)icsmap.h:$(GLSRC)gsmemory.h $(PSSRC)icsmap.h:$(GLSRC)gpsync.h $(PSSRC)icsmap.h:$(GLSRC)gslibctx.h +$(PSSRC)icsmap.h:$(GLSRC)gs_dll_call.h $(PSSRC)icsmap.h:$(GLSRC)gsalloc.h +$(PSSRC)icsmap.h:$(GLSRC)stdio_.h $(PSSRC)icsmap.h:$(GLSRC)gxcindex.h -$(PSSRC)icsmap.h:$(GLSRC)stdint_.h $(PSSRC)icsmap.h:$(GLSRC)gsgstate.h -$(PSSRC)icsmap.h:$(GLSRC)gs_dll_call.h -$(PSSRC)icsmap.h:$(GLSRC)stdio_.h -$(PSSRC)icsmap.h:$(GLSRC)gstypes.h +$(PSSRC)icsmap.h:$(GLSRC)stdint_.h +$(PSSRC)icsmap.h:$(GLSRC)gssprintf.h $(PSSRC)icsmap.h:$(GLSRC)std.h +$(PSSRC)icsmap.h:$(GLSRC)gstypes.h $(PSSRC)icsmap.h:$(GLSRC)stdpre.h $(PSSRC)icsmap.h:$(GLGEN)arch.h -$(PSSRC)icsmap.h:$(GLSRC)gssprintf.h $(PSSRC)idisp.h:$(PSSRC)imain.h $(PSSRC)idisp.h:$(GLSRC)gsexit.h $(PSSRC)idisp.h:$(PSSRC)iref.h @@ -4570,40 +4572,40 @@ $(PSSRC)idisp.h:$(GLSRC)gxalloc.h $(PSSRC)idisp.h:$(GLSRC)gxobj.h $(PSSRC)idisp.h:$(GLSRC)gsnamecl.h $(PSSRC)idisp.h:$(GLSRC)gxcspace.h -$(PSSRC)idisp.h:$(GLSRC)gxfrac.h $(PSSRC)idisp.h:$(GLSRC)gsdcolor.h +$(PSSRC)idisp.h:$(GLSRC)gxfrac.h $(PSSRC)idisp.h:$(GLSRC)gscms.h -$(PSSRC)idisp.h:$(GLSRC)gsdevice.h $(PSSRC)idisp.h:$(GLSRC)gscspace.h +$(PSSRC)idisp.h:$(GLSRC)gsdevice.h $(PSSRC)idisp.h:$(GLSRC)gxarith.h -$(PSSRC)idisp.h:$(GLSRC)gsrefct.h -$(PSSRC)idisp.h:$(GLSRC)gsiparam.h $(PSSRC)idisp.h:$(GLSRC)gxhttile.h -$(PSSRC)idisp.h:$(GLSRC)memento.h -$(PSSRC)idisp.h:$(GLSRC)gsparam.h -$(PSSRC)idisp.h:$(GLSRC)gsmatrix.h +$(PSSRC)idisp.h:$(GLSRC)gsiparam.h $(PSSRC)idisp.h:$(GLSRC)gxbitmap.h +$(PSSRC)idisp.h:$(GLSRC)gsmatrix.h +$(PSSRC)idisp.h:$(GLSRC)gsrefct.h +$(PSSRC)idisp.h:$(GLSRC)gsparam.h +$(PSSRC)idisp.h:$(GLSRC)gsccolor.h $(PSSRC)idisp.h:$(GLSRC)gsstruct.h $(PSSRC)idisp.h:$(GLSRC)gxsync.h -$(PSSRC)idisp.h:$(GLSRC)gscsel.h $(PSSRC)idisp.h:$(GLSRC)scommon.h +$(PSSRC)idisp.h:$(GLSRC)memento.h +$(PSSRC)idisp.h:$(GLSRC)gscsel.h $(PSSRC)idisp.h:$(GLSRC)gsbitmap.h -$(PSSRC)idisp.h:$(GLSRC)gsccolor.h $(PSSRC)idisp.h:$(GLSRC)gsstype.h $(PSSRC)idisp.h:$(GLSRC)gsmemory.h $(PSSRC)idisp.h:$(GLSRC)gpsync.h $(PSSRC)idisp.h:$(GLSRC)gslibctx.h +$(PSSRC)idisp.h:$(GLSRC)gs_dll_call.h $(PSSRC)idisp.h:$(GLSRC)gsalloc.h +$(PSSRC)idisp.h:$(GLSRC)stdio_.h $(PSSRC)idisp.h:$(GLSRC)gxcindex.h -$(PSSRC)idisp.h:$(GLSRC)stdint_.h $(PSSRC)idisp.h:$(GLSRC)gsgstate.h -$(PSSRC)idisp.h:$(GLSRC)gs_dll_call.h -$(PSSRC)idisp.h:$(GLSRC)stdio_.h -$(PSSRC)idisp.h:$(GLSRC)gstypes.h +$(PSSRC)idisp.h:$(GLSRC)stdint_.h +$(PSSRC)idisp.h:$(GLSRC)gssprintf.h $(PSSRC)idisp.h:$(GLSRC)std.h +$(PSSRC)idisp.h:$(GLSRC)gstypes.h $(PSSRC)idisp.h:$(GLSRC)stdpre.h $(PSSRC)idisp.h:$(GLGEN)arch.h -$(PSSRC)idisp.h:$(GLSRC)gssprintf.h $(PSSRC)ifilter2.h:$(GLSRC)scfx.h $(PSSRC)ifilter2.h:$(GLSRC)slzwx.h $(PSSRC)ifilter2.h:$(GLSRC)spdiffx.h @@ -4616,46 +4618,46 @@ $(PSSRC)ifilter2.h:$(PSSRC)isdata.h $(PSSRC)ifilter2.h:$(PSSRC)imemory.h $(PSSRC)ifilter2.h:$(PSSRC)ivmspace.h $(PSSRC)ifilter2.h:$(PSSRC)iref.h -$(PSSRC)ifilter2.h:$(GLSRC)gxalloc.h $(PSSRC)ifilter2.h:$(GLSRC)gsgc.h +$(PSSRC)ifilter2.h:$(GLSRC)gxalloc.h $(PSSRC)ifilter2.h:$(GLSRC)gxobj.h $(PSSRC)ifilter2.h:$(GLSRC)gsnamecl.h $(PSSRC)ifilter2.h:$(GLSRC)gxcspace.h -$(PSSRC)ifilter2.h:$(GLSRC)gxfrac.h $(PSSRC)ifilter2.h:$(GLSRC)gsdcolor.h +$(PSSRC)ifilter2.h:$(GLSRC)gxfrac.h $(PSSRC)ifilter2.h:$(GLSRC)gscms.h -$(PSSRC)ifilter2.h:$(GLSRC)gsdevice.h $(PSSRC)ifilter2.h:$(GLSRC)gscspace.h +$(PSSRC)ifilter2.h:$(GLSRC)gsdevice.h $(PSSRC)ifilter2.h:$(GLSRC)gxarith.h -$(PSSRC)ifilter2.h:$(GLSRC)gsrefct.h -$(PSSRC)ifilter2.h:$(GLSRC)gsiparam.h $(PSSRC)ifilter2.h:$(GLSRC)gxhttile.h -$(PSSRC)ifilter2.h:$(GLSRC)memento.h -$(PSSRC)ifilter2.h:$(GLSRC)gsparam.h -$(PSSRC)ifilter2.h:$(GLSRC)gsmatrix.h +$(PSSRC)ifilter2.h:$(GLSRC)gsiparam.h $(PSSRC)ifilter2.h:$(GLSRC)gxbitmap.h +$(PSSRC)ifilter2.h:$(GLSRC)gsmatrix.h +$(PSSRC)ifilter2.h:$(GLSRC)gsrefct.h +$(PSSRC)ifilter2.h:$(GLSRC)gsparam.h +$(PSSRC)ifilter2.h:$(GLSRC)gsccolor.h $(PSSRC)ifilter2.h:$(GLSRC)gsstruct.h $(PSSRC)ifilter2.h:$(GLSRC)gxsync.h -$(PSSRC)ifilter2.h:$(GLSRC)gscsel.h $(PSSRC)ifilter2.h:$(GLSRC)scommon.h +$(PSSRC)ifilter2.h:$(GLSRC)memento.h +$(PSSRC)ifilter2.h:$(GLSRC)gscsel.h $(PSSRC)ifilter2.h:$(GLSRC)gsbitmap.h -$(PSSRC)ifilter2.h:$(GLSRC)gsccolor.h $(PSSRC)ifilter2.h:$(GLSRC)gsstype.h $(PSSRC)ifilter2.h:$(GLSRC)gsmemory.h $(PSSRC)ifilter2.h:$(GLSRC)gpsync.h $(PSSRC)ifilter2.h:$(GLSRC)gslibctx.h +$(PSSRC)ifilter2.h:$(GLSRC)gs_dll_call.h $(PSSRC)ifilter2.h:$(GLSRC)gsalloc.h +$(PSSRC)ifilter2.h:$(GLSRC)stdio_.h $(PSSRC)ifilter2.h:$(GLSRC)gsbittab.h $(PSSRC)ifilter2.h:$(GLSRC)gxcindex.h -$(PSSRC)ifilter2.h:$(GLSRC)stdint_.h $(PSSRC)ifilter2.h:$(GLSRC)gsgstate.h -$(PSSRC)ifilter2.h:$(GLSRC)gs_dll_call.h -$(PSSRC)ifilter2.h:$(GLSRC)stdio_.h -$(PSSRC)ifilter2.h:$(GLSRC)gstypes.h +$(PSSRC)ifilter2.h:$(GLSRC)stdint_.h +$(PSSRC)ifilter2.h:$(GLSRC)gssprintf.h $(PSSRC)ifilter2.h:$(GLSRC)std.h +$(PSSRC)ifilter2.h:$(GLSRC)gstypes.h $(PSSRC)ifilter2.h:$(GLSRC)stdpre.h $(PSSRC)ifilter2.h:$(GLGEN)arch.h -$(PSSRC)ifilter2.h:$(GLSRC)gssprintf.h $(PSSRC)ifont.h:$(GLSRC)gxfont.h $(PSSRC)ifont.h:$(GLSRC)gspath.h $(PSSRC)ifont.h:$(GLSRC)gxmatrix.h @@ -4666,54 +4668,54 @@ $(PSSRC)ifont.h:$(GLSRC)gsnotify.h $(PSSRC)ifont.h:$(GLSRC)gsfcmap.h $(PSSRC)ifont.h:$(PSSRC)iref.h $(PSSRC)ifont.h:$(GLSRC)gxalloc.h -$(PSSRC)ifont.h:$(GLSRC)gxobj.h $(PSSRC)ifont.h:$(GLSRC)gstext.h +$(PSSRC)ifont.h:$(GLSRC)gxobj.h $(PSSRC)ifont.h:$(GLSRC)gsnamecl.h $(PSSRC)ifont.h:$(GLSRC)gxcspace.h +$(PSSRC)ifont.h:$(GLSRC)gsuid.h +$(PSSRC)ifont.h:$(GLSRC)gsdcolor.h $(PSSRC)ifont.h:$(GLSRC)gsfont.h -$(PSSRC)ifont.h:$(GLSRC)gxpath.h -$(PSSRC)ifont.h:$(GLSRC)gspenum.h +$(PSSRC)ifont.h:$(GLSRC)gxftype.h $(PSSRC)ifont.h:$(GLSRC)gxfrac.h -$(PSSRC)ifont.h:$(GLSRC)gslparam.h -$(PSSRC)ifont.h:$(GLSRC)gsdcolor.h -$(PSSRC)ifont.h:$(GLSRC)gsrect.h $(PSSRC)ifont.h:$(GLSRC)gscms.h -$(PSSRC)ifont.h:$(GLSRC)gxftype.h -$(PSSRC)ifont.h:$(GLSRC)gsdevice.h $(PSSRC)ifont.h:$(GLSRC)gscspace.h -$(PSSRC)ifont.h:$(GLSRC)gsuid.h +$(PSSRC)ifont.h:$(GLSRC)gxpath.h +$(PSSRC)ifont.h:$(GLSRC)gsdevice.h $(PSSRC)ifont.h:$(GLSRC)gxarith.h +$(PSSRC)ifont.h:$(GLSRC)gspenum.h +$(PSSRC)ifont.h:$(GLSRC)gxhttile.h +$(PSSRC)ifont.h:$(GLSRC)gsrect.h +$(PSSRC)ifont.h:$(GLSRC)gslparam.h +$(PSSRC)ifont.h:$(GLSRC)gsiparam.h +$(PSSRC)ifont.h:$(GLSRC)gxbitmap.h +$(PSSRC)ifont.h:$(GLSRC)gsmatrix.h +$(PSSRC)ifont.h:$(GLSRC)gscpm.h $(PSSRC)ifont.h:$(GLSRC)gxfixed.h $(PSSRC)ifont.h:$(GLSRC)gsrefct.h -$(PSSRC)ifont.h:$(GLSRC)gscpm.h -$(PSSRC)ifont.h:$(GLSRC)gsiparam.h -$(PSSRC)ifont.h:$(GLSRC)gxhttile.h -$(PSSRC)ifont.h:$(GLSRC)memento.h $(PSSRC)ifont.h:$(GLSRC)gsparam.h -$(PSSRC)ifont.h:$(GLSRC)gsmatrix.h -$(PSSRC)ifont.h:$(GLSRC)gxbitmap.h +$(PSSRC)ifont.h:$(GLSRC)gsccolor.h $(PSSRC)ifont.h:$(GLSRC)gsstruct.h $(PSSRC)ifont.h:$(GLSRC)gxsync.h -$(PSSRC)ifont.h:$(GLSRC)gscsel.h $(PSSRC)ifont.h:$(GLSRC)scommon.h +$(PSSRC)ifont.h:$(GLSRC)memento.h +$(PSSRC)ifont.h:$(GLSRC)gscsel.h $(PSSRC)ifont.h:$(GLSRC)gsbitmap.h -$(PSSRC)ifont.h:$(GLSRC)gsccolor.h $(PSSRC)ifont.h:$(GLSRC)gsstype.h $(PSSRC)ifont.h:$(GLSRC)gsmemory.h $(PSSRC)ifont.h:$(GLSRC)gpsync.h $(PSSRC)ifont.h:$(GLSRC)gslibctx.h +$(PSSRC)ifont.h:$(GLSRC)gs_dll_call.h $(PSSRC)ifont.h:$(GLSRC)gsalloc.h +$(PSSRC)ifont.h:$(GLSRC)stdio_.h $(PSSRC)ifont.h:$(GLSRC)gxcindex.h -$(PSSRC)ifont.h:$(GLSRC)stdint_.h $(PSSRC)ifont.h:$(GLSRC)gsgstate.h +$(PSSRC)ifont.h:$(GLSRC)stdint_.h +$(PSSRC)ifont.h:$(GLSRC)gssprintf.h $(PSSRC)ifont.h:$(GLSRC)gsccode.h -$(PSSRC)ifont.h:$(GLSRC)gs_dll_call.h -$(PSSRC)ifont.h:$(GLSRC)stdio_.h -$(PSSRC)ifont.h:$(GLSRC)gstypes.h $(PSSRC)ifont.h:$(GLSRC)std.h +$(PSSRC)ifont.h:$(GLSRC)gstypes.h $(PSSRC)ifont.h:$(GLSRC)stdpre.h $(PSSRC)ifont.h:$(GLGEN)arch.h -$(PSSRC)ifont.h:$(GLSRC)gssprintf.h $(PSSRC)ifont1.h:$(PSSRC)ichar1.h $(PSSRC)ifont1.h:$(GLSRC)gxfont1.h $(PSSRC)ifont1.h:$(PSSRC)bfont.h @@ -4734,56 +4736,56 @@ $(PSSRC)ifont1.h:$(PSSRC)isdata.h $(PSSRC)ifont1.h:$(PSSRC)imemory.h $(PSSRC)ifont1.h:$(PSSRC)ivmspace.h $(PSSRC)ifont1.h:$(PSSRC)iref.h -$(PSSRC)ifont1.h:$(GLSRC)gxalloc.h $(PSSRC)ifont1.h:$(GLSRC)gsgc.h -$(PSSRC)ifont1.h:$(GLSRC)gxobj.h +$(PSSRC)ifont1.h:$(GLSRC)gxalloc.h $(PSSRC)ifont1.h:$(GLSRC)gstext.h +$(PSSRC)ifont1.h:$(GLSRC)gxobj.h $(PSSRC)ifont1.h:$(GLSRC)gsnamecl.h $(PSSRC)ifont1.h:$(GLSRC)gxcspace.h +$(PSSRC)ifont1.h:$(GLSRC)gsuid.h +$(PSSRC)ifont1.h:$(GLSRC)gsdcolor.h $(PSSRC)ifont1.h:$(GLSRC)gsfont.h -$(PSSRC)ifont1.h:$(GLSRC)gxpath.h -$(PSSRC)ifont1.h:$(GLSRC)gspenum.h +$(PSSRC)ifont1.h:$(GLSRC)gxftype.h $(PSSRC)ifont1.h:$(GLSRC)gxfrac.h -$(PSSRC)ifont1.h:$(GLSRC)gslparam.h -$(PSSRC)ifont1.h:$(GLSRC)gsdcolor.h -$(PSSRC)ifont1.h:$(GLSRC)gsrect.h $(PSSRC)ifont1.h:$(GLSRC)gscms.h -$(PSSRC)ifont1.h:$(GLSRC)gxftype.h -$(PSSRC)ifont1.h:$(GLSRC)gsdevice.h $(PSSRC)ifont1.h:$(GLSRC)gscspace.h -$(PSSRC)ifont1.h:$(GLSRC)gsuid.h +$(PSSRC)ifont1.h:$(GLSRC)gxpath.h +$(PSSRC)ifont1.h:$(GLSRC)gsdevice.h $(PSSRC)ifont1.h:$(GLSRC)gxarith.h +$(PSSRC)ifont1.h:$(GLSRC)gspenum.h +$(PSSRC)ifont1.h:$(GLSRC)gxhttile.h +$(PSSRC)ifont1.h:$(GLSRC)gsrect.h +$(PSSRC)ifont1.h:$(GLSRC)gslparam.h +$(PSSRC)ifont1.h:$(GLSRC)gsiparam.h +$(PSSRC)ifont1.h:$(GLSRC)gxbitmap.h +$(PSSRC)ifont1.h:$(GLSRC)gsmatrix.h +$(PSSRC)ifont1.h:$(GLSRC)gscpm.h $(PSSRC)ifont1.h:$(GLSRC)gxfixed.h $(PSSRC)ifont1.h:$(GLSRC)gsrefct.h -$(PSSRC)ifont1.h:$(GLSRC)gscpm.h -$(PSSRC)ifont1.h:$(GLSRC)gsiparam.h -$(PSSRC)ifont1.h:$(GLSRC)gxhttile.h -$(PSSRC)ifont1.h:$(GLSRC)memento.h $(PSSRC)ifont1.h:$(GLSRC)gsparam.h -$(PSSRC)ifont1.h:$(GLSRC)gsmatrix.h -$(PSSRC)ifont1.h:$(GLSRC)gxbitmap.h +$(PSSRC)ifont1.h:$(GLSRC)gsccolor.h $(PSSRC)ifont1.h:$(GLSRC)gsstruct.h $(PSSRC)ifont1.h:$(GLSRC)gxsync.h -$(PSSRC)ifont1.h:$(GLSRC)gscsel.h $(PSSRC)ifont1.h:$(GLSRC)scommon.h +$(PSSRC)ifont1.h:$(GLSRC)memento.h +$(PSSRC)ifont1.h:$(GLSRC)gscsel.h $(PSSRC)ifont1.h:$(GLSRC)gsbitmap.h -$(PSSRC)ifont1.h:$(GLSRC)gsccolor.h $(PSSRC)ifont1.h:$(GLSRC)gsstype.h $(PSSRC)ifont1.h:$(GLSRC)gsmemory.h $(PSSRC)ifont1.h:$(GLSRC)gpsync.h $(PSSRC)ifont1.h:$(GLSRC)gslibctx.h +$(PSSRC)ifont1.h:$(GLSRC)gs_dll_call.h $(PSSRC)ifont1.h:$(GLSRC)gsalloc.h +$(PSSRC)ifont1.h:$(GLSRC)stdio_.h $(PSSRC)ifont1.h:$(GLSRC)gxcindex.h -$(PSSRC)ifont1.h:$(GLSRC)stdint_.h $(PSSRC)ifont1.h:$(GLSRC)gsgstate.h +$(PSSRC)ifont1.h:$(GLSRC)stdint_.h +$(PSSRC)ifont1.h:$(GLSRC)gssprintf.h $(PSSRC)ifont1.h:$(GLSRC)gsccode.h -$(PSSRC)ifont1.h:$(GLSRC)gs_dll_call.h -$(PSSRC)ifont1.h:$(GLSRC)stdio_.h -$(PSSRC)ifont1.h:$(GLSRC)gstypes.h $(PSSRC)ifont1.h:$(GLSRC)std.h +$(PSSRC)ifont1.h:$(GLSRC)gstypes.h $(PSSRC)ifont1.h:$(GLSRC)stdpre.h $(PSSRC)ifont1.h:$(GLGEN)arch.h -$(PSSRC)ifont1.h:$(GLSRC)gssprintf.h $(PSSRC)ifont2.h:$(PSSRC)ifont1.h $(PSSRC)ifont2.h:$(PSSRC)ichar1.h $(PSSRC)ifont2.h:$(GLSRC)gxfont1.h @@ -4805,56 +4807,56 @@ $(PSSRC)ifont2.h:$(PSSRC)isdata.h $(PSSRC)ifont2.h:$(PSSRC)imemory.h $(PSSRC)ifont2.h:$(PSSRC)ivmspace.h $(PSSRC)ifont2.h:$(PSSRC)iref.h -$(PSSRC)ifont2.h:$(GLSRC)gxalloc.h $(PSSRC)ifont2.h:$(GLSRC)gsgc.h -$(PSSRC)ifont2.h:$(GLSRC)gxobj.h +$(PSSRC)ifont2.h:$(GLSRC)gxalloc.h $(PSSRC)ifont2.h:$(GLSRC)gstext.h +$(PSSRC)ifont2.h:$(GLSRC)gxobj.h $(PSSRC)ifont2.h:$(GLSRC)gsnamecl.h $(PSSRC)ifont2.h:$(GLSRC)gxcspace.h +$(PSSRC)ifont2.h:$(GLSRC)gsuid.h +$(PSSRC)ifont2.h:$(GLSRC)gsdcolor.h $(PSSRC)ifont2.h:$(GLSRC)gsfont.h -$(PSSRC)ifont2.h:$(GLSRC)gxpath.h -$(PSSRC)ifont2.h:$(GLSRC)gspenum.h +$(PSSRC)ifont2.h:$(GLSRC)gxftype.h $(PSSRC)ifont2.h:$(GLSRC)gxfrac.h -$(PSSRC)ifont2.h:$(GLSRC)gslparam.h -$(PSSRC)ifont2.h:$(GLSRC)gsdcolor.h -$(PSSRC)ifont2.h:$(GLSRC)gsrect.h $(PSSRC)ifont2.h:$(GLSRC)gscms.h -$(PSSRC)ifont2.h:$(GLSRC)gxftype.h -$(PSSRC)ifont2.h:$(GLSRC)gsdevice.h $(PSSRC)ifont2.h:$(GLSRC)gscspace.h -$(PSSRC)ifont2.h:$(GLSRC)gsuid.h +$(PSSRC)ifont2.h:$(GLSRC)gxpath.h +$(PSSRC)ifont2.h:$(GLSRC)gsdevice.h $(PSSRC)ifont2.h:$(GLSRC)gxarith.h +$(PSSRC)ifont2.h:$(GLSRC)gspenum.h +$(PSSRC)ifont2.h:$(GLSRC)gxhttile.h +$(PSSRC)ifont2.h:$(GLSRC)gsrect.h +$(PSSRC)ifont2.h:$(GLSRC)gslparam.h +$(PSSRC)ifont2.h:$(GLSRC)gsiparam.h +$(PSSRC)ifont2.h:$(GLSRC)gxbitmap.h +$(PSSRC)ifont2.h:$(GLSRC)gsmatrix.h +$(PSSRC)ifont2.h:$(GLSRC)gscpm.h $(PSSRC)ifont2.h:$(GLSRC)gxfixed.h $(PSSRC)ifont2.h:$(GLSRC)gsrefct.h -$(PSSRC)ifont2.h:$(GLSRC)gscpm.h -$(PSSRC)ifont2.h:$(GLSRC)gsiparam.h -$(PSSRC)ifont2.h:$(GLSRC)gxhttile.h -$(PSSRC)ifont2.h:$(GLSRC)memento.h $(PSSRC)ifont2.h:$(GLSRC)gsparam.h -$(PSSRC)ifont2.h:$(GLSRC)gsmatrix.h -$(PSSRC)ifont2.h:$(GLSRC)gxbitmap.h +$(PSSRC)ifont2.h:$(GLSRC)gsccolor.h $(PSSRC)ifont2.h:$(GLSRC)gsstruct.h $(PSSRC)ifont2.h:$(GLSRC)gxsync.h -$(PSSRC)ifont2.h:$(GLSRC)gscsel.h $(PSSRC)ifont2.h:$(GLSRC)scommon.h +$(PSSRC)ifont2.h:$(GLSRC)memento.h +$(PSSRC)ifont2.h:$(GLSRC)gscsel.h $(PSSRC)ifont2.h:$(GLSRC)gsbitmap.h -$(PSSRC)ifont2.h:$(GLSRC)gsccolor.h $(PSSRC)ifont2.h:$(GLSRC)gsstype.h $(PSSRC)ifont2.h:$(GLSRC)gsmemory.h $(PSSRC)ifont2.h:$(GLSRC)gpsync.h $(PSSRC)ifont2.h:$(GLSRC)gslibctx.h +$(PSSRC)ifont2.h:$(GLSRC)gs_dll_call.h $(PSSRC)ifont2.h:$(GLSRC)gsalloc.h +$(PSSRC)ifont2.h:$(GLSRC)stdio_.h $(PSSRC)ifont2.h:$(GLSRC)gxcindex.h -$(PSSRC)ifont2.h:$(GLSRC)stdint_.h $(PSSRC)ifont2.h:$(GLSRC)gsgstate.h +$(PSSRC)ifont2.h:$(GLSRC)stdint_.h +$(PSSRC)ifont2.h:$(GLSRC)gssprintf.h $(PSSRC)ifont2.h:$(GLSRC)gsccode.h -$(PSSRC)ifont2.h:$(GLSRC)gs_dll_call.h -$(PSSRC)ifont2.h:$(GLSRC)stdio_.h -$(PSSRC)ifont2.h:$(GLSRC)gstypes.h $(PSSRC)ifont2.h:$(GLSRC)std.h +$(PSSRC)ifont2.h:$(GLSRC)gstypes.h $(PSSRC)ifont2.h:$(GLSRC)stdpre.h $(PSSRC)ifont2.h:$(GLGEN)arch.h -$(PSSRC)ifont2.h:$(GLSRC)gssprintf.h $(PSSRC)ifont42.h:$(PSSRC)bfont.h $(PSSRC)ifont42.h:$(PSSRC)ifont.h $(PSSRC)ifont42.h:$(GLSRC)gxfont42.h @@ -4873,137 +4875,137 @@ $(PSSRC)ifont42.h:$(PSSRC)isdata.h $(PSSRC)ifont42.h:$(PSSRC)imemory.h $(PSSRC)ifont42.h:$(PSSRC)ivmspace.h $(PSSRC)ifont42.h:$(PSSRC)iref.h -$(PSSRC)ifont42.h:$(GLSRC)gxalloc.h $(PSSRC)ifont42.h:$(GLSRC)gsgc.h -$(PSSRC)ifont42.h:$(GLSRC)gxobj.h +$(PSSRC)ifont42.h:$(GLSRC)gxalloc.h $(PSSRC)ifont42.h:$(GLSRC)gstext.h +$(PSSRC)ifont42.h:$(GLSRC)gxobj.h $(PSSRC)ifont42.h:$(GLSRC)gsnamecl.h -$(PSSRC)ifont42.h:$(GLSRC)gxcspace.h $(PSSRC)ifont42.h:$(GLSRC)gxfcache.h +$(PSSRC)ifont42.h:$(GLSRC)gxcspace.h +$(PSSRC)ifont42.h:$(GLSRC)gsuid.h +$(PSSRC)ifont42.h:$(GLSRC)gsdcolor.h $(PSSRC)ifont42.h:$(GLSRC)gsfont.h -$(PSSRC)ifont42.h:$(GLSRC)gxpath.h -$(PSSRC)ifont42.h:$(GLSRC)gspenum.h +$(PSSRC)ifont42.h:$(GLSRC)gxftype.h $(PSSRC)ifont42.h:$(GLSRC)gxfrac.h -$(PSSRC)ifont42.h:$(GLSRC)gslparam.h -$(PSSRC)ifont42.h:$(GLSRC)gxbcache.h -$(PSSRC)ifont42.h:$(GLSRC)gsdcolor.h -$(PSSRC)ifont42.h:$(GLSRC)gsrect.h $(PSSRC)ifont42.h:$(GLSRC)gscms.h -$(PSSRC)ifont42.h:$(GLSRC)gxftype.h -$(PSSRC)ifont42.h:$(GLSRC)gsdevice.h $(PSSRC)ifont42.h:$(GLSRC)gscspace.h -$(PSSRC)ifont42.h:$(GLSRC)gsuid.h +$(PSSRC)ifont42.h:$(GLSRC)gxpath.h +$(PSSRC)ifont42.h:$(GLSRC)gxbcache.h +$(PSSRC)ifont42.h:$(GLSRC)gsdevice.h $(PSSRC)ifont42.h:$(GLSRC)gxarith.h +$(PSSRC)ifont42.h:$(GLSRC)gspenum.h +$(PSSRC)ifont42.h:$(GLSRC)gxhttile.h +$(PSSRC)ifont42.h:$(GLSRC)gsrect.h +$(PSSRC)ifont42.h:$(GLSRC)gslparam.h $(PSSRC)ifont42.h:$(GLSRC)gsxfont.h +$(PSSRC)ifont42.h:$(GLSRC)gsiparam.h +$(PSSRC)ifont42.h:$(GLSRC)gxbitmap.h +$(PSSRC)ifont42.h:$(GLSRC)gsmatrix.h +$(PSSRC)ifont42.h:$(GLSRC)gscpm.h $(PSSRC)ifont42.h:$(GLSRC)gxfixed.h $(PSSRC)ifont42.h:$(GLSRC)gsrefct.h -$(PSSRC)ifont42.h:$(GLSRC)gscpm.h -$(PSSRC)ifont42.h:$(GLSRC)gsiparam.h -$(PSSRC)ifont42.h:$(GLSRC)gxhttile.h -$(PSSRC)ifont42.h:$(GLSRC)memento.h $(PSSRC)ifont42.h:$(GLSRC)gsparam.h -$(PSSRC)ifont42.h:$(GLSRC)gsmatrix.h -$(PSSRC)ifont42.h:$(GLSRC)gxbitmap.h +$(PSSRC)ifont42.h:$(GLSRC)gsccolor.h $(PSSRC)ifont42.h:$(GLSRC)gsstruct.h $(PSSRC)ifont42.h:$(GLSRC)gxsync.h -$(PSSRC)ifont42.h:$(GLSRC)gscsel.h $(PSSRC)ifont42.h:$(GLSRC)scommon.h +$(PSSRC)ifont42.h:$(GLSRC)memento.h +$(PSSRC)ifont42.h:$(GLSRC)gscsel.h $(PSSRC)ifont42.h:$(GLSRC)gsbitmap.h -$(PSSRC)ifont42.h:$(GLSRC)gsccolor.h $(PSSRC)ifont42.h:$(GLSRC)gsstype.h $(PSSRC)ifont42.h:$(GLSRC)gsmemory.h $(PSSRC)ifont42.h:$(GLSRC)gpsync.h $(PSSRC)ifont42.h:$(GLSRC)gslibctx.h +$(PSSRC)ifont42.h:$(GLSRC)gs_dll_call.h $(PSSRC)ifont42.h:$(GLSRC)gsalloc.h +$(PSSRC)ifont42.h:$(GLSRC)stdio_.h $(PSSRC)ifont42.h:$(GLSRC)gxcindex.h -$(PSSRC)ifont42.h:$(GLSRC)stdint_.h $(PSSRC)ifont42.h:$(GLSRC)gsgstate.h +$(PSSRC)ifont42.h:$(GLSRC)stdint_.h +$(PSSRC)ifont42.h:$(GLSRC)gssprintf.h $(PSSRC)ifont42.h:$(GLSRC)gsccode.h -$(PSSRC)ifont42.h:$(GLSRC)gs_dll_call.h -$(PSSRC)ifont42.h:$(GLSRC)stdio_.h -$(PSSRC)ifont42.h:$(GLSRC)gstypes.h $(PSSRC)ifont42.h:$(GLSRC)std.h +$(PSSRC)ifont42.h:$(GLSRC)gstypes.h $(PSSRC)ifont42.h:$(GLSRC)stdpre.h $(PSSRC)ifont42.h:$(GLGEN)arch.h -$(PSSRC)ifont42.h:$(GLSRC)gssprintf.h $(PSSRC)ifrpred.h:$(PSSRC)iref.h $(PSSRC)ifrpred.h:$(GLSRC)gxalloc.h $(PSSRC)ifrpred.h:$(GLSRC)gxobj.h $(PSSRC)ifrpred.h:$(GLSRC)gsnamecl.h $(PSSRC)ifrpred.h:$(GLSRC)gxcspace.h -$(PSSRC)ifrpred.h:$(GLSRC)gxfrac.h $(PSSRC)ifrpred.h:$(GLSRC)gsdcolor.h +$(PSSRC)ifrpred.h:$(GLSRC)gxfrac.h $(PSSRC)ifrpred.h:$(GLSRC)gscms.h -$(PSSRC)ifrpred.h:$(GLSRC)gsdevice.h $(PSSRC)ifrpred.h:$(GLSRC)gscspace.h +$(PSSRC)ifrpred.h:$(GLSRC)gsdevice.h $(PSSRC)ifrpred.h:$(GLSRC)gxarith.h -$(PSSRC)ifrpred.h:$(GLSRC)gsrefct.h -$(PSSRC)ifrpred.h:$(GLSRC)gsiparam.h $(PSSRC)ifrpred.h:$(GLSRC)gxhttile.h -$(PSSRC)ifrpred.h:$(GLSRC)memento.h -$(PSSRC)ifrpred.h:$(GLSRC)gsparam.h -$(PSSRC)ifrpred.h:$(GLSRC)gsmatrix.h +$(PSSRC)ifrpred.h:$(GLSRC)gsiparam.h $(PSSRC)ifrpred.h:$(GLSRC)gxbitmap.h +$(PSSRC)ifrpred.h:$(GLSRC)gsmatrix.h +$(PSSRC)ifrpred.h:$(GLSRC)gsrefct.h +$(PSSRC)ifrpred.h:$(GLSRC)gsparam.h +$(PSSRC)ifrpred.h:$(GLSRC)gsccolor.h $(PSSRC)ifrpred.h:$(GLSRC)gsstruct.h $(PSSRC)ifrpred.h:$(GLSRC)gxsync.h -$(PSSRC)ifrpred.h:$(GLSRC)gscsel.h $(PSSRC)ifrpred.h:$(GLSRC)scommon.h +$(PSSRC)ifrpred.h:$(GLSRC)memento.h +$(PSSRC)ifrpred.h:$(GLSRC)gscsel.h $(PSSRC)ifrpred.h:$(GLSRC)gsbitmap.h -$(PSSRC)ifrpred.h:$(GLSRC)gsccolor.h $(PSSRC)ifrpred.h:$(GLSRC)gsstype.h $(PSSRC)ifrpred.h:$(GLSRC)gsmemory.h $(PSSRC)ifrpred.h:$(GLSRC)gpsync.h $(PSSRC)ifrpred.h:$(GLSRC)gslibctx.h +$(PSSRC)ifrpred.h:$(GLSRC)gs_dll_call.h $(PSSRC)ifrpred.h:$(GLSRC)gsalloc.h +$(PSSRC)ifrpred.h:$(GLSRC)stdio_.h $(PSSRC)ifrpred.h:$(GLSRC)gxcindex.h -$(PSSRC)ifrpred.h:$(GLSRC)stdint_.h $(PSSRC)ifrpred.h:$(GLSRC)gsgstate.h -$(PSSRC)ifrpred.h:$(GLSRC)gs_dll_call.h -$(PSSRC)ifrpred.h:$(GLSRC)stdio_.h -$(PSSRC)ifrpred.h:$(GLSRC)gstypes.h +$(PSSRC)ifrpred.h:$(GLSRC)stdint_.h +$(PSSRC)ifrpred.h:$(GLSRC)gssprintf.h $(PSSRC)ifrpred.h:$(GLSRC)std.h +$(PSSRC)ifrpred.h:$(GLSRC)gstypes.h $(PSSRC)ifrpred.h:$(GLSRC)stdpre.h $(PSSRC)ifrpred.h:$(GLGEN)arch.h -$(PSSRC)ifrpred.h:$(GLSRC)gssprintf.h $(PSSRC)ifwpred.h:$(PSSRC)iref.h $(PSSRC)ifwpred.h:$(GLSRC)gxalloc.h $(PSSRC)ifwpred.h:$(GLSRC)gxobj.h $(PSSRC)ifwpred.h:$(GLSRC)gsnamecl.h $(PSSRC)ifwpred.h:$(GLSRC)gxcspace.h -$(PSSRC)ifwpred.h:$(GLSRC)gxfrac.h $(PSSRC)ifwpred.h:$(GLSRC)gsdcolor.h +$(PSSRC)ifwpred.h:$(GLSRC)gxfrac.h $(PSSRC)ifwpred.h:$(GLSRC)gscms.h -$(PSSRC)ifwpred.h:$(GLSRC)gsdevice.h $(PSSRC)ifwpred.h:$(GLSRC)gscspace.h +$(PSSRC)ifwpred.h:$(GLSRC)gsdevice.h $(PSSRC)ifwpred.h:$(GLSRC)gxarith.h -$(PSSRC)ifwpred.h:$(GLSRC)gsrefct.h -$(PSSRC)ifwpred.h:$(GLSRC)gsiparam.h $(PSSRC)ifwpred.h:$(GLSRC)gxhttile.h -$(PSSRC)ifwpred.h:$(GLSRC)memento.h -$(PSSRC)ifwpred.h:$(GLSRC)gsparam.h -$(PSSRC)ifwpred.h:$(GLSRC)gsmatrix.h +$(PSSRC)ifwpred.h:$(GLSRC)gsiparam.h $(PSSRC)ifwpred.h:$(GLSRC)gxbitmap.h +$(PSSRC)ifwpred.h:$(GLSRC)gsmatrix.h +$(PSSRC)ifwpred.h:$(GLSRC)gsrefct.h +$(PSSRC)ifwpred.h:$(GLSRC)gsparam.h +$(PSSRC)ifwpred.h:$(GLSRC)gsccolor.h $(PSSRC)ifwpred.h:$(GLSRC)gsstruct.h $(PSSRC)ifwpred.h:$(GLSRC)gxsync.h -$(PSSRC)ifwpred.h:$(GLSRC)gscsel.h $(PSSRC)ifwpred.h:$(GLSRC)scommon.h +$(PSSRC)ifwpred.h:$(GLSRC)memento.h +$(PSSRC)ifwpred.h:$(GLSRC)gscsel.h $(PSSRC)ifwpred.h:$(GLSRC)gsbitmap.h -$(PSSRC)ifwpred.h:$(GLSRC)gsccolor.h $(PSSRC)ifwpred.h:$(GLSRC)gsstype.h $(PSSRC)ifwpred.h:$(GLSRC)gsmemory.h $(PSSRC)ifwpred.h:$(GLSRC)gpsync.h $(PSSRC)ifwpred.h:$(GLSRC)gslibctx.h +$(PSSRC)ifwpred.h:$(GLSRC)gs_dll_call.h $(PSSRC)ifwpred.h:$(GLSRC)gsalloc.h +$(PSSRC)ifwpred.h:$(GLSRC)stdio_.h $(PSSRC)ifwpred.h:$(GLSRC)gxcindex.h -$(PSSRC)ifwpred.h:$(GLSRC)stdint_.h $(PSSRC)ifwpred.h:$(GLSRC)gsgstate.h -$(PSSRC)ifwpred.h:$(GLSRC)gs_dll_call.h -$(PSSRC)ifwpred.h:$(GLSRC)stdio_.h -$(PSSRC)ifwpred.h:$(GLSRC)gstypes.h +$(PSSRC)ifwpred.h:$(GLSRC)stdint_.h +$(PSSRC)ifwpred.h:$(GLSRC)gssprintf.h $(PSSRC)ifwpred.h:$(GLSRC)std.h +$(PSSRC)ifwpred.h:$(GLSRC)gstypes.h $(PSSRC)ifwpred.h:$(GLSRC)stdpre.h $(PSSRC)ifwpred.h:$(GLGEN)arch.h -$(PSSRC)ifwpred.h:$(GLSRC)gssprintf.h $(PSSRC)iht.h:$(GLSRC)gxht.h $(PSSRC)iht.h:$(GLSRC)gxhttype.h $(PSSRC)iht.h:$(GLSRC)gsht1.h @@ -5015,167 +5017,167 @@ $(PSSRC)iht.h:$(PSSRC)imemory.h $(PSSRC)iht.h:$(PSSRC)ivmspace.h $(PSSRC)iht.h:$(GLSRC)gsht.h $(PSSRC)iht.h:$(PSSRC)iref.h -$(PSSRC)iht.h:$(GLSRC)gxalloc.h $(PSSRC)iht.h:$(GLSRC)gsgc.h +$(PSSRC)iht.h:$(GLSRC)gxalloc.h $(PSSRC)iht.h:$(GLSRC)gxobj.h $(PSSRC)iht.h:$(GLSRC)gsnamecl.h $(PSSRC)iht.h:$(GLSRC)gxcspace.h -$(PSSRC)iht.h:$(GLSRC)gxtmap.h -$(PSSRC)iht.h:$(GLSRC)gxfrac.h $(PSSRC)iht.h:$(GLSRC)gsdcolor.h +$(PSSRC)iht.h:$(GLSRC)gxfrac.h $(PSSRC)iht.h:$(GLSRC)gscms.h -$(PSSRC)iht.h:$(GLSRC)gsdevice.h $(PSSRC)iht.h:$(GLSRC)gscspace.h +$(PSSRC)iht.h:$(GLSRC)gsdevice.h $(PSSRC)iht.h:$(GLSRC)gxarith.h -$(PSSRC)iht.h:$(GLSRC)gsrefct.h -$(PSSRC)iht.h:$(GLSRC)gsiparam.h $(PSSRC)iht.h:$(GLSRC)gxhttile.h -$(PSSRC)iht.h:$(GLSRC)memento.h -$(PSSRC)iht.h:$(GLSRC)gsparam.h -$(PSSRC)iht.h:$(GLSRC)gsmatrix.h +$(PSSRC)iht.h:$(GLSRC)gsiparam.h $(PSSRC)iht.h:$(GLSRC)gxbitmap.h +$(PSSRC)iht.h:$(GLSRC)gsmatrix.h +$(PSSRC)iht.h:$(GLSRC)gsrefct.h +$(PSSRC)iht.h:$(GLSRC)gsparam.h +$(PSSRC)iht.h:$(GLSRC)gsccolor.h $(PSSRC)iht.h:$(GLSRC)gsstruct.h $(PSSRC)iht.h:$(GLSRC)gxsync.h -$(PSSRC)iht.h:$(GLSRC)gscsel.h $(PSSRC)iht.h:$(GLSRC)scommon.h +$(PSSRC)iht.h:$(GLSRC)memento.h +$(PSSRC)iht.h:$(GLSRC)gscsel.h $(PSSRC)iht.h:$(GLSRC)gsbitmap.h -$(PSSRC)iht.h:$(GLSRC)gsccolor.h $(PSSRC)iht.h:$(GLSRC)gsstype.h +$(PSSRC)iht.h:$(GLSRC)gxtmap.h $(PSSRC)iht.h:$(GLSRC)gsmemory.h $(PSSRC)iht.h:$(GLSRC)gpsync.h $(PSSRC)iht.h:$(GLSRC)gslibctx.h +$(PSSRC)iht.h:$(GLSRC)gs_dll_call.h $(PSSRC)iht.h:$(GLSRC)gsalloc.h +$(PSSRC)iht.h:$(GLSRC)stdio_.h $(PSSRC)iht.h:$(GLSRC)gxcindex.h -$(PSSRC)iht.h:$(GLSRC)stdint_.h $(PSSRC)iht.h:$(GLSRC)gsgstate.h -$(PSSRC)iht.h:$(GLSRC)gs_dll_call.h -$(PSSRC)iht.h:$(GLSRC)stdio_.h -$(PSSRC)iht.h:$(GLSRC)gstypes.h +$(PSSRC)iht.h:$(GLSRC)stdint_.h +$(PSSRC)iht.h:$(GLSRC)gssprintf.h $(PSSRC)iht.h:$(GLSRC)std.h +$(PSSRC)iht.h:$(GLSRC)gstypes.h $(PSSRC)iht.h:$(GLSRC)stdpre.h $(PSSRC)iht.h:$(GLGEN)arch.h -$(PSSRC)iht.h:$(GLSRC)gssprintf.h $(PSSRC)iimage.h:$(PSSRC)iref.h $(PSSRC)iimage.h:$(GLSRC)gxalloc.h $(PSSRC)iimage.h:$(GLSRC)gxobj.h $(PSSRC)iimage.h:$(GLSRC)gsnamecl.h $(PSSRC)iimage.h:$(GLSRC)gxcspace.h -$(PSSRC)iimage.h:$(GLSRC)gxfrac.h $(PSSRC)iimage.h:$(GLSRC)gsdcolor.h +$(PSSRC)iimage.h:$(GLSRC)gxfrac.h $(PSSRC)iimage.h:$(GLSRC)gscms.h -$(PSSRC)iimage.h:$(GLSRC)gsdevice.h $(PSSRC)iimage.h:$(GLSRC)gscspace.h +$(PSSRC)iimage.h:$(GLSRC)gsdevice.h $(PSSRC)iimage.h:$(GLSRC)gxarith.h -$(PSSRC)iimage.h:$(GLSRC)gsrefct.h -$(PSSRC)iimage.h:$(GLSRC)gsiparam.h $(PSSRC)iimage.h:$(GLSRC)gxhttile.h -$(PSSRC)iimage.h:$(GLSRC)memento.h -$(PSSRC)iimage.h:$(GLSRC)gsparam.h -$(PSSRC)iimage.h:$(GLSRC)gsmatrix.h +$(PSSRC)iimage.h:$(GLSRC)gsiparam.h $(PSSRC)iimage.h:$(GLSRC)gxbitmap.h +$(PSSRC)iimage.h:$(GLSRC)gsmatrix.h +$(PSSRC)iimage.h:$(GLSRC)gsrefct.h +$(PSSRC)iimage.h:$(GLSRC)gsparam.h +$(PSSRC)iimage.h:$(GLSRC)gsccolor.h $(PSSRC)iimage.h:$(GLSRC)gsstruct.h $(PSSRC)iimage.h:$(GLSRC)gxsync.h -$(PSSRC)iimage.h:$(GLSRC)gscsel.h $(PSSRC)iimage.h:$(GLSRC)scommon.h +$(PSSRC)iimage.h:$(GLSRC)memento.h +$(PSSRC)iimage.h:$(GLSRC)gscsel.h $(PSSRC)iimage.h:$(GLSRC)gsbitmap.h -$(PSSRC)iimage.h:$(GLSRC)gsccolor.h $(PSSRC)iimage.h:$(GLSRC)gsstype.h $(PSSRC)iimage.h:$(GLSRC)gsmemory.h $(PSSRC)iimage.h:$(GLSRC)gpsync.h $(PSSRC)iimage.h:$(GLSRC)gslibctx.h +$(PSSRC)iimage.h:$(GLSRC)gs_dll_call.h $(PSSRC)iimage.h:$(GLSRC)gsalloc.h +$(PSSRC)iimage.h:$(GLSRC)stdio_.h $(PSSRC)iimage.h:$(GLSRC)gxcindex.h -$(PSSRC)iimage.h:$(GLSRC)stdint_.h $(PSSRC)iimage.h:$(GLSRC)gsgstate.h -$(PSSRC)iimage.h:$(GLSRC)gs_dll_call.h -$(PSSRC)iimage.h:$(GLSRC)stdio_.h -$(PSSRC)iimage.h:$(GLSRC)gstypes.h +$(PSSRC)iimage.h:$(GLSRC)stdint_.h +$(PSSRC)iimage.h:$(GLSRC)gssprintf.h $(PSSRC)iimage.h:$(GLSRC)std.h +$(PSSRC)iimage.h:$(GLSRC)gstypes.h $(PSSRC)iimage.h:$(GLSRC)stdpre.h $(PSSRC)iimage.h:$(GLGEN)arch.h -$(PSSRC)iimage.h:$(GLSRC)gssprintf.h $(PSSRC)iinit.h:$(PSSRC)imemory.h $(PSSRC)iinit.h:$(PSSRC)ivmspace.h $(PSSRC)iinit.h:$(PSSRC)iref.h -$(PSSRC)iinit.h:$(GLSRC)gxalloc.h $(PSSRC)iinit.h:$(GLSRC)gsgc.h +$(PSSRC)iinit.h:$(GLSRC)gxalloc.h $(PSSRC)iinit.h:$(GLSRC)gxobj.h $(PSSRC)iinit.h:$(GLSRC)gsnamecl.h $(PSSRC)iinit.h:$(GLSRC)gxcspace.h -$(PSSRC)iinit.h:$(GLSRC)gxfrac.h $(PSSRC)iinit.h:$(GLSRC)gsdcolor.h +$(PSSRC)iinit.h:$(GLSRC)gxfrac.h $(PSSRC)iinit.h:$(GLSRC)gscms.h -$(PSSRC)iinit.h:$(GLSRC)gsdevice.h $(PSSRC)iinit.h:$(GLSRC)gscspace.h +$(PSSRC)iinit.h:$(GLSRC)gsdevice.h $(PSSRC)iinit.h:$(GLSRC)gxarith.h -$(PSSRC)iinit.h:$(GLSRC)gsrefct.h -$(PSSRC)iinit.h:$(GLSRC)gsiparam.h $(PSSRC)iinit.h:$(GLSRC)gxhttile.h -$(PSSRC)iinit.h:$(GLSRC)memento.h -$(PSSRC)iinit.h:$(GLSRC)gsparam.h -$(PSSRC)iinit.h:$(GLSRC)gsmatrix.h +$(PSSRC)iinit.h:$(GLSRC)gsiparam.h $(PSSRC)iinit.h:$(GLSRC)gxbitmap.h +$(PSSRC)iinit.h:$(GLSRC)gsmatrix.h +$(PSSRC)iinit.h:$(GLSRC)gsrefct.h +$(PSSRC)iinit.h:$(GLSRC)gsparam.h +$(PSSRC)iinit.h:$(GLSRC)gsccolor.h $(PSSRC)iinit.h:$(GLSRC)gsstruct.h $(PSSRC)iinit.h:$(GLSRC)gxsync.h -$(PSSRC)iinit.h:$(GLSRC)gscsel.h $(PSSRC)iinit.h:$(GLSRC)scommon.h +$(PSSRC)iinit.h:$(GLSRC)memento.h +$(PSSRC)iinit.h:$(GLSRC)gscsel.h $(PSSRC)iinit.h:$(GLSRC)gsbitmap.h -$(PSSRC)iinit.h:$(GLSRC)gsccolor.h $(PSSRC)iinit.h:$(GLSRC)gsstype.h $(PSSRC)iinit.h:$(GLSRC)gsmemory.h $(PSSRC)iinit.h:$(GLSRC)gpsync.h $(PSSRC)iinit.h:$(GLSRC)gslibctx.h +$(PSSRC)iinit.h:$(GLSRC)gs_dll_call.h $(PSSRC)iinit.h:$(GLSRC)gsalloc.h +$(PSSRC)iinit.h:$(GLSRC)stdio_.h $(PSSRC)iinit.h:$(GLSRC)gxcindex.h -$(PSSRC)iinit.h:$(GLSRC)stdint_.h $(PSSRC)iinit.h:$(GLSRC)gsgstate.h -$(PSSRC)iinit.h:$(GLSRC)gs_dll_call.h -$(PSSRC)iinit.h:$(GLSRC)stdio_.h -$(PSSRC)iinit.h:$(GLSRC)gstypes.h +$(PSSRC)iinit.h:$(GLSRC)stdint_.h +$(PSSRC)iinit.h:$(GLSRC)gssprintf.h $(PSSRC)iinit.h:$(GLSRC)std.h +$(PSSRC)iinit.h:$(GLSRC)gstypes.h $(PSSRC)iinit.h:$(GLSRC)stdpre.h $(PSSRC)iinit.h:$(GLGEN)arch.h -$(PSSRC)iinit.h:$(GLSRC)gssprintf.h $(PSSRC)imain.h:$(GLSRC)gsexit.h $(PSSRC)imain.h:$(PSSRC)iref.h $(PSSRC)imain.h:$(GLSRC)gxalloc.h $(PSSRC)imain.h:$(GLSRC)gxobj.h $(PSSRC)imain.h:$(GLSRC)gsnamecl.h $(PSSRC)imain.h:$(GLSRC)gxcspace.h -$(PSSRC)imain.h:$(GLSRC)gxfrac.h $(PSSRC)imain.h:$(GLSRC)gsdcolor.h +$(PSSRC)imain.h:$(GLSRC)gxfrac.h $(PSSRC)imain.h:$(GLSRC)gscms.h -$(PSSRC)imain.h:$(GLSRC)gsdevice.h $(PSSRC)imain.h:$(GLSRC)gscspace.h +$(PSSRC)imain.h:$(GLSRC)gsdevice.h $(PSSRC)imain.h:$(GLSRC)gxarith.h -$(PSSRC)imain.h:$(GLSRC)gsrefct.h -$(PSSRC)imain.h:$(GLSRC)gsiparam.h $(PSSRC)imain.h:$(GLSRC)gxhttile.h -$(PSSRC)imain.h:$(GLSRC)memento.h -$(PSSRC)imain.h:$(GLSRC)gsparam.h -$(PSSRC)imain.h:$(GLSRC)gsmatrix.h +$(PSSRC)imain.h:$(GLSRC)gsiparam.h $(PSSRC)imain.h:$(GLSRC)gxbitmap.h +$(PSSRC)imain.h:$(GLSRC)gsmatrix.h +$(PSSRC)imain.h:$(GLSRC)gsrefct.h +$(PSSRC)imain.h:$(GLSRC)gsparam.h +$(PSSRC)imain.h:$(GLSRC)gsccolor.h $(PSSRC)imain.h:$(GLSRC)gsstruct.h $(PSSRC)imain.h:$(GLSRC)gxsync.h -$(PSSRC)imain.h:$(GLSRC)gscsel.h $(PSSRC)imain.h:$(GLSRC)scommon.h +$(PSSRC)imain.h:$(GLSRC)memento.h +$(PSSRC)imain.h:$(GLSRC)gscsel.h $(PSSRC)imain.h:$(GLSRC)gsbitmap.h -$(PSSRC)imain.h:$(GLSRC)gsccolor.h $(PSSRC)imain.h:$(GLSRC)gsstype.h $(PSSRC)imain.h:$(GLSRC)gsmemory.h $(PSSRC)imain.h:$(GLSRC)gpsync.h $(PSSRC)imain.h:$(GLSRC)gslibctx.h +$(PSSRC)imain.h:$(GLSRC)gs_dll_call.h $(PSSRC)imain.h:$(GLSRC)gsalloc.h +$(PSSRC)imain.h:$(GLSRC)stdio_.h $(PSSRC)imain.h:$(GLSRC)gxcindex.h -$(PSSRC)imain.h:$(GLSRC)stdint_.h $(PSSRC)imain.h:$(GLSRC)gsgstate.h -$(PSSRC)imain.h:$(GLSRC)gs_dll_call.h -$(PSSRC)imain.h:$(GLSRC)stdio_.h -$(PSSRC)imain.h:$(GLSRC)gstypes.h +$(PSSRC)imain.h:$(GLSRC)stdint_.h +$(PSSRC)imain.h:$(GLSRC)gssprintf.h $(PSSRC)imain.h:$(GLSRC)std.h +$(PSSRC)imain.h:$(GLSRC)gstypes.h $(PSSRC)imain.h:$(GLSRC)stdpre.h $(PSSRC)imain.h:$(GLGEN)arch.h -$(PSSRC)imain.h:$(GLSRC)gssprintf.h $(PSSRC)imainarg.h:$(PSSRC)imain.h $(PSSRC)imainarg.h:$(GLSRC)gsexit.h $(PSSRC)imainarg.h:$(PSSRC)iref.h @@ -5183,40 +5185,40 @@ $(PSSRC)imainarg.h:$(GLSRC)gxalloc.h $(PSSRC)imainarg.h:$(GLSRC)gxobj.h $(PSSRC)imainarg.h:$(GLSRC)gsnamecl.h $(PSSRC)imainarg.h:$(GLSRC)gxcspace.h -$(PSSRC)imainarg.h:$(GLSRC)gxfrac.h $(PSSRC)imainarg.h:$(GLSRC)gsdcolor.h +$(PSSRC)imainarg.h:$(GLSRC)gxfrac.h $(PSSRC)imainarg.h:$(GLSRC)gscms.h -$(PSSRC)imainarg.h:$(GLSRC)gsdevice.h $(PSSRC)imainarg.h:$(GLSRC)gscspace.h +$(PSSRC)imainarg.h:$(GLSRC)gsdevice.h $(PSSRC)imainarg.h:$(GLSRC)gxarith.h -$(PSSRC)imainarg.h:$(GLSRC)gsrefct.h -$(PSSRC)imainarg.h:$(GLSRC)gsiparam.h $(PSSRC)imainarg.h:$(GLSRC)gxhttile.h -$(PSSRC)imainarg.h:$(GLSRC)memento.h -$(PSSRC)imainarg.h:$(GLSRC)gsparam.h -$(PSSRC)imainarg.h:$(GLSRC)gsmatrix.h +$(PSSRC)imainarg.h:$(GLSRC)gsiparam.h $(PSSRC)imainarg.h:$(GLSRC)gxbitmap.h +$(PSSRC)imainarg.h:$(GLSRC)gsmatrix.h +$(PSSRC)imainarg.h:$(GLSRC)gsrefct.h +$(PSSRC)imainarg.h:$(GLSRC)gsparam.h +$(PSSRC)imainarg.h:$(GLSRC)gsccolor.h $(PSSRC)imainarg.h:$(GLSRC)gsstruct.h $(PSSRC)imainarg.h:$(GLSRC)gxsync.h -$(PSSRC)imainarg.h:$(GLSRC)gscsel.h $(PSSRC)imainarg.h:$(GLSRC)scommon.h +$(PSSRC)imainarg.h:$(GLSRC)memento.h +$(PSSRC)imainarg.h:$(GLSRC)gscsel.h $(PSSRC)imainarg.h:$(GLSRC)gsbitmap.h -$(PSSRC)imainarg.h:$(GLSRC)gsccolor.h $(PSSRC)imainarg.h:$(GLSRC)gsstype.h $(PSSRC)imainarg.h:$(GLSRC)gsmemory.h $(PSSRC)imainarg.h:$(GLSRC)gpsync.h $(PSSRC)imainarg.h:$(GLSRC)gslibctx.h +$(PSSRC)imainarg.h:$(GLSRC)gs_dll_call.h $(PSSRC)imainarg.h:$(GLSRC)gsalloc.h +$(PSSRC)imainarg.h:$(GLSRC)stdio_.h $(PSSRC)imainarg.h:$(GLSRC)gxcindex.h -$(PSSRC)imainarg.h:$(GLSRC)stdint_.h $(PSSRC)imainarg.h:$(GLSRC)gsgstate.h -$(PSSRC)imainarg.h:$(GLSRC)gs_dll_call.h -$(PSSRC)imainarg.h:$(GLSRC)stdio_.h -$(PSSRC)imainarg.h:$(GLSRC)gstypes.h +$(PSSRC)imainarg.h:$(GLSRC)stdint_.h +$(PSSRC)imainarg.h:$(GLSRC)gssprintf.h $(PSSRC)imainarg.h:$(GLSRC)std.h +$(PSSRC)imainarg.h:$(GLSRC)gstypes.h $(PSSRC)imainarg.h:$(GLSRC)stdpre.h $(PSSRC)imainarg.h:$(GLGEN)arch.h -$(PSSRC)imainarg.h:$(GLSRC)gssprintf.h $(PSSRC)iminst.h:$(PSSRC)imain.h $(PSSRC)iminst.h:$(GLSRC)gsexit.h $(PSSRC)iminst.h:$(PSSRC)iref.h @@ -5224,312 +5226,312 @@ $(PSSRC)iminst.h:$(GLSRC)gxalloc.h $(PSSRC)iminst.h:$(GLSRC)gxobj.h $(PSSRC)iminst.h:$(GLSRC)gsnamecl.h $(PSSRC)iminst.h:$(GLSRC)gxcspace.h -$(PSSRC)iminst.h:$(GLSRC)gxfrac.h $(PSSRC)iminst.h:$(GLSRC)gsdcolor.h +$(PSSRC)iminst.h:$(GLSRC)gxfrac.h $(PSSRC)iminst.h:$(GLSRC)gscms.h -$(PSSRC)iminst.h:$(GLSRC)gsdevice.h $(PSSRC)iminst.h:$(GLSRC)gscspace.h +$(PSSRC)iminst.h:$(GLSRC)gsdevice.h $(PSSRC)iminst.h:$(GLSRC)gxarith.h -$(PSSRC)iminst.h:$(GLSRC)gsrefct.h -$(PSSRC)iminst.h:$(GLSRC)gsiparam.h $(PSSRC)iminst.h:$(GLSRC)gxhttile.h -$(PSSRC)iminst.h:$(GLSRC)memento.h -$(PSSRC)iminst.h:$(GLSRC)gsparam.h -$(PSSRC)iminst.h:$(GLSRC)gsmatrix.h +$(PSSRC)iminst.h:$(GLSRC)gsiparam.h $(PSSRC)iminst.h:$(GLSRC)gxbitmap.h +$(PSSRC)iminst.h:$(GLSRC)gsmatrix.h +$(PSSRC)iminst.h:$(GLSRC)gsrefct.h +$(PSSRC)iminst.h:$(GLSRC)gsparam.h +$(PSSRC)iminst.h:$(GLSRC)gsccolor.h $(PSSRC)iminst.h:$(GLSRC)gsstruct.h $(PSSRC)iminst.h:$(GLSRC)gxsync.h -$(PSSRC)iminst.h:$(GLSRC)gscsel.h $(PSSRC)iminst.h:$(GLSRC)scommon.h +$(PSSRC)iminst.h:$(GLSRC)memento.h +$(PSSRC)iminst.h:$(GLSRC)gscsel.h $(PSSRC)iminst.h:$(GLSRC)gsbitmap.h -$(PSSRC)iminst.h:$(GLSRC)gsccolor.h $(PSSRC)iminst.h:$(GLSRC)gsstype.h $(PSSRC)iminst.h:$(GLSRC)gsmemory.h $(PSSRC)iminst.h:$(GLSRC)gpsync.h $(PSSRC)iminst.h:$(GLSRC)gslibctx.h +$(PSSRC)iminst.h:$(GLSRC)gs_dll_call.h $(PSSRC)iminst.h:$(GLSRC)gsalloc.h +$(PSSRC)iminst.h:$(GLSRC)stdio_.h $(PSSRC)iminst.h:$(GLSRC)gxcindex.h -$(PSSRC)iminst.h:$(GLSRC)stdint_.h $(PSSRC)iminst.h:$(GLSRC)gsgstate.h -$(PSSRC)iminst.h:$(GLSRC)gs_dll_call.h -$(PSSRC)iminst.h:$(GLSRC)stdio_.h -$(PSSRC)iminst.h:$(GLSRC)gstypes.h +$(PSSRC)iminst.h:$(GLSRC)stdint_.h +$(PSSRC)iminst.h:$(GLSRC)gssprintf.h $(PSSRC)iminst.h:$(GLSRC)std.h +$(PSSRC)iminst.h:$(GLSRC)gstypes.h $(PSSRC)iminst.h:$(GLSRC)stdpre.h $(PSSRC)iminst.h:$(GLGEN)arch.h -$(PSSRC)iminst.h:$(GLSRC)gssprintf.h $(PSSRC)iparray.h:$(PSSRC)isdata.h $(PSSRC)iparray.h:$(PSSRC)imemory.h $(PSSRC)iparray.h:$(PSSRC)ivmspace.h $(PSSRC)iparray.h:$(PSSRC)iref.h -$(PSSRC)iparray.h:$(GLSRC)gxalloc.h $(PSSRC)iparray.h:$(GLSRC)gsgc.h +$(PSSRC)iparray.h:$(GLSRC)gxalloc.h $(PSSRC)iparray.h:$(GLSRC)gxobj.h $(PSSRC)iparray.h:$(GLSRC)gsnamecl.h $(PSSRC)iparray.h:$(GLSRC)gxcspace.h -$(PSSRC)iparray.h:$(GLSRC)gxfrac.h $(PSSRC)iparray.h:$(GLSRC)gsdcolor.h +$(PSSRC)iparray.h:$(GLSRC)gxfrac.h $(PSSRC)iparray.h:$(GLSRC)gscms.h -$(PSSRC)iparray.h:$(GLSRC)gsdevice.h $(PSSRC)iparray.h:$(GLSRC)gscspace.h +$(PSSRC)iparray.h:$(GLSRC)gsdevice.h $(PSSRC)iparray.h:$(GLSRC)gxarith.h -$(PSSRC)iparray.h:$(GLSRC)gsrefct.h -$(PSSRC)iparray.h:$(GLSRC)gsiparam.h $(PSSRC)iparray.h:$(GLSRC)gxhttile.h -$(PSSRC)iparray.h:$(GLSRC)memento.h -$(PSSRC)iparray.h:$(GLSRC)gsparam.h -$(PSSRC)iparray.h:$(GLSRC)gsmatrix.h +$(PSSRC)iparray.h:$(GLSRC)gsiparam.h $(PSSRC)iparray.h:$(GLSRC)gxbitmap.h +$(PSSRC)iparray.h:$(GLSRC)gsmatrix.h +$(PSSRC)iparray.h:$(GLSRC)gsrefct.h +$(PSSRC)iparray.h:$(GLSRC)gsparam.h +$(PSSRC)iparray.h:$(GLSRC)gsccolor.h $(PSSRC)iparray.h:$(GLSRC)gsstruct.h $(PSSRC)iparray.h:$(GLSRC)gxsync.h -$(PSSRC)iparray.h:$(GLSRC)gscsel.h $(PSSRC)iparray.h:$(GLSRC)scommon.h +$(PSSRC)iparray.h:$(GLSRC)memento.h +$(PSSRC)iparray.h:$(GLSRC)gscsel.h $(PSSRC)iparray.h:$(GLSRC)gsbitmap.h -$(PSSRC)iparray.h:$(GLSRC)gsccolor.h $(PSSRC)iparray.h:$(GLSRC)gsstype.h $(PSSRC)iparray.h:$(GLSRC)gsmemory.h $(PSSRC)iparray.h:$(GLSRC)gpsync.h $(PSSRC)iparray.h:$(GLSRC)gslibctx.h +$(PSSRC)iparray.h:$(GLSRC)gs_dll_call.h $(PSSRC)iparray.h:$(GLSRC)gsalloc.h +$(PSSRC)iparray.h:$(GLSRC)stdio_.h $(PSSRC)iparray.h:$(GLSRC)gxcindex.h -$(PSSRC)iparray.h:$(GLSRC)stdint_.h $(PSSRC)iparray.h:$(GLSRC)gsgstate.h -$(PSSRC)iparray.h:$(GLSRC)gs_dll_call.h -$(PSSRC)iparray.h:$(GLSRC)stdio_.h -$(PSSRC)iparray.h:$(GLSRC)gstypes.h +$(PSSRC)iparray.h:$(GLSRC)stdint_.h +$(PSSRC)iparray.h:$(GLSRC)gssprintf.h $(PSSRC)iparray.h:$(GLSRC)std.h +$(PSSRC)iparray.h:$(GLSRC)gstypes.h $(PSSRC)iparray.h:$(GLSRC)stdpre.h $(PSSRC)iparray.h:$(GLGEN)arch.h -$(PSSRC)iparray.h:$(GLSRC)gssprintf.h $(PSSRC)iscanbin.h:$(PSSRC)iscan.h $(PSSRC)iscanbin.h:$(PSSRC)iref.h $(PSSRC)iscanbin.h:$(GLSRC)sa85x.h -$(PSSRC)iscanbin.h:$(GLSRC)gxalloc.h $(PSSRC)iscanbin.h:$(GLSRC)sa85d.h $(PSSRC)iscanbin.h:$(GLSRC)sstring.h $(PSSRC)iscanbin.h:$(PSSRC)inamestr.h $(PSSRC)iscanbin.h:$(PSSRC)inameidx.h +$(PSSRC)iscanbin.h:$(GLSRC)gxalloc.h $(PSSRC)iscanbin.h:$(GLSRC)gxobj.h $(PSSRC)iscanbin.h:$(GLSRC)gsnamecl.h $(PSSRC)iscanbin.h:$(GLSRC)gxcspace.h -$(PSSRC)iscanbin.h:$(GLSRC)gxfrac.h $(PSSRC)iscanbin.h:$(GLSRC)gsdcolor.h +$(PSSRC)iscanbin.h:$(GLSRC)gxfrac.h $(PSSRC)iscanbin.h:$(GLSRC)gscms.h -$(PSSRC)iscanbin.h:$(GLSRC)gsdevice.h $(PSSRC)iscanbin.h:$(GLSRC)gscspace.h +$(PSSRC)iscanbin.h:$(GLSRC)gsdevice.h $(PSSRC)iscanbin.h:$(GLSRC)gxarith.h -$(PSSRC)iscanbin.h:$(GLSRC)gsrefct.h -$(PSSRC)iscanbin.h:$(GLSRC)gsiparam.h $(PSSRC)iscanbin.h:$(GLSRC)gxhttile.h -$(PSSRC)iscanbin.h:$(GLSRC)memento.h -$(PSSRC)iscanbin.h:$(GLSRC)gsparam.h -$(PSSRC)iscanbin.h:$(GLSRC)gsmatrix.h +$(PSSRC)iscanbin.h:$(GLSRC)gsiparam.h $(PSSRC)iscanbin.h:$(GLSRC)gxbitmap.h +$(PSSRC)iscanbin.h:$(GLSRC)gsmatrix.h +$(PSSRC)iscanbin.h:$(GLSRC)gsrefct.h +$(PSSRC)iscanbin.h:$(GLSRC)gsparam.h +$(PSSRC)iscanbin.h:$(GLSRC)gsccolor.h $(PSSRC)iscanbin.h:$(GLSRC)gsstruct.h $(PSSRC)iscanbin.h:$(GLSRC)gxsync.h -$(PSSRC)iscanbin.h:$(GLSRC)gscsel.h $(PSSRC)iscanbin.h:$(GLSRC)scommon.h +$(PSSRC)iscanbin.h:$(GLSRC)memento.h +$(PSSRC)iscanbin.h:$(GLSRC)gscsel.h $(PSSRC)iscanbin.h:$(GLSRC)gsbitmap.h -$(PSSRC)iscanbin.h:$(GLSRC)gsccolor.h $(PSSRC)iscanbin.h:$(GLSRC)gsstype.h $(PSSRC)iscanbin.h:$(GLSRC)gsmemory.h $(PSSRC)iscanbin.h:$(GLSRC)gpsync.h $(PSSRC)iscanbin.h:$(GLSRC)gslibctx.h +$(PSSRC)iscanbin.h:$(GLSRC)gs_dll_call.h $(PSSRC)iscanbin.h:$(GLSRC)gsalloc.h +$(PSSRC)iscanbin.h:$(GLSRC)stdio_.h $(PSSRC)iscanbin.h:$(GLSRC)gxcindex.h -$(PSSRC)iscanbin.h:$(GLSRC)stdint_.h $(PSSRC)iscanbin.h:$(GLSRC)gsgstate.h -$(PSSRC)iscanbin.h:$(GLSRC)gs_dll_call.h -$(PSSRC)iscanbin.h:$(GLSRC)stdio_.h -$(PSSRC)iscanbin.h:$(GLSRC)gstypes.h +$(PSSRC)iscanbin.h:$(GLSRC)stdint_.h +$(PSSRC)iscanbin.h:$(GLSRC)gssprintf.h $(PSSRC)iscanbin.h:$(GLSRC)std.h +$(PSSRC)iscanbin.h:$(GLSRC)gstypes.h $(PSSRC)iscanbin.h:$(GLSRC)stdpre.h $(PSSRC)iscanbin.h:$(GLGEN)arch.h -$(PSSRC)iscanbin.h:$(GLSRC)gssprintf.h $(PSSRC)iscannum.h:$(PSSRC)imemory.h $(PSSRC)iscannum.h:$(PSSRC)ivmspace.h $(PSSRC)iscannum.h:$(PSSRC)iref.h -$(PSSRC)iscannum.h:$(GLSRC)gxalloc.h $(PSSRC)iscannum.h:$(GLSRC)gsgc.h +$(PSSRC)iscannum.h:$(GLSRC)gxalloc.h $(PSSRC)iscannum.h:$(GLSRC)gxobj.h $(PSSRC)iscannum.h:$(GLSRC)gsnamecl.h $(PSSRC)iscannum.h:$(GLSRC)gxcspace.h -$(PSSRC)iscannum.h:$(GLSRC)gxfrac.h $(PSSRC)iscannum.h:$(GLSRC)gsdcolor.h +$(PSSRC)iscannum.h:$(GLSRC)gxfrac.h $(PSSRC)iscannum.h:$(GLSRC)gscms.h -$(PSSRC)iscannum.h:$(GLSRC)gsdevice.h $(PSSRC)iscannum.h:$(GLSRC)gscspace.h +$(PSSRC)iscannum.h:$(GLSRC)gsdevice.h $(PSSRC)iscannum.h:$(GLSRC)gxarith.h -$(PSSRC)iscannum.h:$(GLSRC)gsrefct.h -$(PSSRC)iscannum.h:$(GLSRC)gsiparam.h $(PSSRC)iscannum.h:$(GLSRC)gxhttile.h -$(PSSRC)iscannum.h:$(GLSRC)memento.h -$(PSSRC)iscannum.h:$(GLSRC)gsparam.h -$(PSSRC)iscannum.h:$(GLSRC)gsmatrix.h +$(PSSRC)iscannum.h:$(GLSRC)gsiparam.h $(PSSRC)iscannum.h:$(GLSRC)gxbitmap.h +$(PSSRC)iscannum.h:$(GLSRC)gsmatrix.h +$(PSSRC)iscannum.h:$(GLSRC)gsrefct.h +$(PSSRC)iscannum.h:$(GLSRC)gsparam.h +$(PSSRC)iscannum.h:$(GLSRC)gsccolor.h $(PSSRC)iscannum.h:$(GLSRC)gsstruct.h $(PSSRC)iscannum.h:$(GLSRC)gxsync.h -$(PSSRC)iscannum.h:$(GLSRC)gscsel.h $(PSSRC)iscannum.h:$(GLSRC)scommon.h +$(PSSRC)iscannum.h:$(GLSRC)memento.h +$(PSSRC)iscannum.h:$(GLSRC)gscsel.h $(PSSRC)iscannum.h:$(GLSRC)gsbitmap.h -$(PSSRC)iscannum.h:$(GLSRC)gsccolor.h $(PSSRC)iscannum.h:$(GLSRC)gsstype.h $(PSSRC)iscannum.h:$(GLSRC)gsmemory.h $(PSSRC)iscannum.h:$(GLSRC)gpsync.h $(PSSRC)iscannum.h:$(GLSRC)gslibctx.h +$(PSSRC)iscannum.h:$(GLSRC)gs_dll_call.h $(PSSRC)iscannum.h:$(GLSRC)gsalloc.h +$(PSSRC)iscannum.h:$(GLSRC)stdio_.h $(PSSRC)iscannum.h:$(GLSRC)gxcindex.h -$(PSSRC)iscannum.h:$(GLSRC)stdint_.h $(PSSRC)iscannum.h:$(GLSRC)gsgstate.h -$(PSSRC)iscannum.h:$(GLSRC)gs_dll_call.h -$(PSSRC)iscannum.h:$(GLSRC)stdio_.h -$(PSSRC)iscannum.h:$(GLSRC)gstypes.h +$(PSSRC)iscannum.h:$(GLSRC)stdint_.h +$(PSSRC)iscannum.h:$(GLSRC)gssprintf.h $(PSSRC)iscannum.h:$(GLSRC)std.h +$(PSSRC)iscannum.h:$(GLSRC)gstypes.h $(PSSRC)iscannum.h:$(GLSRC)stdpre.h $(PSSRC)iscannum.h:$(GLGEN)arch.h -$(PSSRC)iscannum.h:$(GLSRC)gssprintf.h $(PSSRC)istream.h:$(PSSRC)imemory.h $(PSSRC)istream.h:$(PSSRC)ivmspace.h $(PSSRC)istream.h:$(PSSRC)iref.h -$(PSSRC)istream.h:$(GLSRC)gxalloc.h $(PSSRC)istream.h:$(GLSRC)gsgc.h +$(PSSRC)istream.h:$(GLSRC)gxalloc.h $(PSSRC)istream.h:$(GLSRC)gxobj.h $(PSSRC)istream.h:$(GLSRC)gsnamecl.h $(PSSRC)istream.h:$(GLSRC)gxcspace.h -$(PSSRC)istream.h:$(GLSRC)gxfrac.h $(PSSRC)istream.h:$(GLSRC)gsdcolor.h +$(PSSRC)istream.h:$(GLSRC)gxfrac.h $(PSSRC)istream.h:$(GLSRC)gscms.h -$(PSSRC)istream.h:$(GLSRC)gsdevice.h $(PSSRC)istream.h:$(GLSRC)gscspace.h +$(PSSRC)istream.h:$(GLSRC)gsdevice.h $(PSSRC)istream.h:$(GLSRC)gxarith.h -$(PSSRC)istream.h:$(GLSRC)gsrefct.h -$(PSSRC)istream.h:$(GLSRC)gsiparam.h $(PSSRC)istream.h:$(GLSRC)gxhttile.h -$(PSSRC)istream.h:$(GLSRC)memento.h -$(PSSRC)istream.h:$(GLSRC)gsparam.h -$(PSSRC)istream.h:$(GLSRC)gsmatrix.h +$(PSSRC)istream.h:$(GLSRC)gsiparam.h $(PSSRC)istream.h:$(GLSRC)gxbitmap.h +$(PSSRC)istream.h:$(GLSRC)gsmatrix.h +$(PSSRC)istream.h:$(GLSRC)gsrefct.h +$(PSSRC)istream.h:$(GLSRC)gsparam.h +$(PSSRC)istream.h:$(GLSRC)gsccolor.h $(PSSRC)istream.h:$(GLSRC)gsstruct.h $(PSSRC)istream.h:$(GLSRC)gxsync.h -$(PSSRC)istream.h:$(GLSRC)gscsel.h $(PSSRC)istream.h:$(GLSRC)scommon.h +$(PSSRC)istream.h:$(GLSRC)memento.h +$(PSSRC)istream.h:$(GLSRC)gscsel.h $(PSSRC)istream.h:$(GLSRC)gsbitmap.h -$(PSSRC)istream.h:$(GLSRC)gsccolor.h $(PSSRC)istream.h:$(GLSRC)gsstype.h $(PSSRC)istream.h:$(GLSRC)gsmemory.h $(PSSRC)istream.h:$(GLSRC)gpsync.h $(PSSRC)istream.h:$(GLSRC)gslibctx.h +$(PSSRC)istream.h:$(GLSRC)gs_dll_call.h $(PSSRC)istream.h:$(GLSRC)gsalloc.h +$(PSSRC)istream.h:$(GLSRC)stdio_.h $(PSSRC)istream.h:$(GLSRC)gxcindex.h -$(PSSRC)istream.h:$(GLSRC)stdint_.h $(PSSRC)istream.h:$(GLSRC)gsgstate.h -$(PSSRC)istream.h:$(GLSRC)gs_dll_call.h -$(PSSRC)istream.h:$(GLSRC)stdio_.h -$(PSSRC)istream.h:$(GLSRC)gstypes.h +$(PSSRC)istream.h:$(GLSRC)stdint_.h +$(PSSRC)istream.h:$(GLSRC)gssprintf.h $(PSSRC)istream.h:$(GLSRC)std.h +$(PSSRC)istream.h:$(GLSRC)gstypes.h $(PSSRC)istream.h:$(GLSRC)stdpre.h $(PSSRC)istream.h:$(GLGEN)arch.h -$(PSSRC)istream.h:$(GLSRC)gssprintf.h $(PSSRC)itoken.h:$(PSSRC)iscan.h $(PSSRC)itoken.h:$(PSSRC)iref.h $(PSSRC)itoken.h:$(GLSRC)sa85x.h -$(PSSRC)itoken.h:$(GLSRC)gxalloc.h $(PSSRC)itoken.h:$(GLSRC)sa85d.h $(PSSRC)itoken.h:$(GLSRC)sstring.h $(PSSRC)itoken.h:$(PSSRC)inamestr.h $(PSSRC)itoken.h:$(PSSRC)inameidx.h +$(PSSRC)itoken.h:$(GLSRC)gxalloc.h $(PSSRC)itoken.h:$(GLSRC)gxobj.h $(PSSRC)itoken.h:$(GLSRC)gsnamecl.h $(PSSRC)itoken.h:$(GLSRC)gxcspace.h -$(PSSRC)itoken.h:$(GLSRC)gxfrac.h $(PSSRC)itoken.h:$(GLSRC)gsdcolor.h +$(PSSRC)itoken.h:$(GLSRC)gxfrac.h $(PSSRC)itoken.h:$(GLSRC)gscms.h -$(PSSRC)itoken.h:$(GLSRC)gsdevice.h $(PSSRC)itoken.h:$(GLSRC)gscspace.h +$(PSSRC)itoken.h:$(GLSRC)gsdevice.h $(PSSRC)itoken.h:$(GLSRC)gxarith.h -$(PSSRC)itoken.h:$(GLSRC)gsrefct.h -$(PSSRC)itoken.h:$(GLSRC)gsiparam.h $(PSSRC)itoken.h:$(GLSRC)gxhttile.h -$(PSSRC)itoken.h:$(GLSRC)memento.h -$(PSSRC)itoken.h:$(GLSRC)gsparam.h -$(PSSRC)itoken.h:$(GLSRC)gsmatrix.h +$(PSSRC)itoken.h:$(GLSRC)gsiparam.h $(PSSRC)itoken.h:$(GLSRC)gxbitmap.h +$(PSSRC)itoken.h:$(GLSRC)gsmatrix.h +$(PSSRC)itoken.h:$(GLSRC)gsrefct.h +$(PSSRC)itoken.h:$(GLSRC)gsparam.h +$(PSSRC)itoken.h:$(GLSRC)gsccolor.h $(PSSRC)itoken.h:$(GLSRC)gsstruct.h $(PSSRC)itoken.h:$(GLSRC)gxsync.h -$(PSSRC)itoken.h:$(GLSRC)gscsel.h $(PSSRC)itoken.h:$(GLSRC)scommon.h +$(PSSRC)itoken.h:$(GLSRC)memento.h +$(PSSRC)itoken.h:$(GLSRC)gscsel.h $(PSSRC)itoken.h:$(GLSRC)gsbitmap.h -$(PSSRC)itoken.h:$(GLSRC)gsccolor.h $(PSSRC)itoken.h:$(GLSRC)gsstype.h $(PSSRC)itoken.h:$(GLSRC)gsmemory.h $(PSSRC)itoken.h:$(GLSRC)gpsync.h $(PSSRC)itoken.h:$(GLSRC)gslibctx.h +$(PSSRC)itoken.h:$(GLSRC)gs_dll_call.h $(PSSRC)itoken.h:$(GLSRC)gsalloc.h +$(PSSRC)itoken.h:$(GLSRC)stdio_.h $(PSSRC)itoken.h:$(GLSRC)gxcindex.h -$(PSSRC)itoken.h:$(GLSRC)stdint_.h $(PSSRC)itoken.h:$(GLSRC)gsgstate.h -$(PSSRC)itoken.h:$(GLSRC)gs_dll_call.h -$(PSSRC)itoken.h:$(GLSRC)stdio_.h -$(PSSRC)itoken.h:$(GLSRC)gstypes.h +$(PSSRC)itoken.h:$(GLSRC)stdint_.h +$(PSSRC)itoken.h:$(GLSRC)gssprintf.h $(PSSRC)itoken.h:$(GLSRC)std.h +$(PSSRC)itoken.h:$(GLSRC)gstypes.h $(PSSRC)itoken.h:$(GLSRC)stdpre.h $(PSSRC)itoken.h:$(GLGEN)arch.h -$(PSSRC)itoken.h:$(GLSRC)gssprintf.h $(PSSRC)main.h:$(PSSRC)iminst.h $(PSSRC)main.h:$(PSSRC)imain.h $(PSSRC)main.h:$(GLSRC)gsexit.h $(PSSRC)main.h:$(PSSRC)iref.h $(PSSRC)main.h:$(GLSRC)gxalloc.h $(PSSRC)main.h:$(GLSRC)gxobj.h -$(PSSRC)main.h:$(PSSRC)iapi.h $(PSSRC)main.h:$(GLSRC)gsnamecl.h +$(PSSRC)main.h:$(PSSRC)iapi.h $(PSSRC)main.h:$(GLSRC)gxcspace.h -$(PSSRC)main.h:$(GLSRC)gxfrac.h $(PSSRC)main.h:$(GLSRC)gsdcolor.h +$(PSSRC)main.h:$(GLSRC)gxfrac.h $(PSSRC)main.h:$(GLSRC)gscms.h -$(PSSRC)main.h:$(GLSRC)gsdevice.h $(PSSRC)main.h:$(GLSRC)gscspace.h +$(PSSRC)main.h:$(GLSRC)gsdevice.h $(PSSRC)main.h:$(GLSRC)gxarith.h -$(PSSRC)main.h:$(GLSRC)gsrefct.h -$(PSSRC)main.h:$(GLSRC)gsiparam.h $(PSSRC)main.h:$(GLSRC)gxhttile.h -$(PSSRC)main.h:$(GLSRC)memento.h -$(PSSRC)main.h:$(GLSRC)gsparam.h -$(PSSRC)main.h:$(GLSRC)gsmatrix.h +$(PSSRC)main.h:$(GLSRC)gsiparam.h $(PSSRC)main.h:$(GLSRC)gxbitmap.h +$(PSSRC)main.h:$(GLSRC)gsmatrix.h +$(PSSRC)main.h:$(GLSRC)gsrefct.h +$(PSSRC)main.h:$(GLSRC)gsparam.h +$(PSSRC)main.h:$(GLSRC)gsccolor.h $(PSSRC)main.h:$(GLSRC)gsstruct.h $(PSSRC)main.h:$(GLSRC)gxsync.h -$(PSSRC)main.h:$(GLSRC)gscsel.h $(PSSRC)main.h:$(GLSRC)scommon.h +$(PSSRC)main.h:$(GLSRC)memento.h +$(PSSRC)main.h:$(GLSRC)gscsel.h $(PSSRC)main.h:$(GLSRC)gsbitmap.h -$(PSSRC)main.h:$(GLSRC)gsccolor.h $(PSSRC)main.h:$(GLSRC)gsstype.h $(PSSRC)main.h:$(GLSRC)gsmemory.h $(PSSRC)main.h:$(GLSRC)gpsync.h $(PSSRC)main.h:$(GLSRC)gslibctx.h +$(PSSRC)main.h:$(GLSRC)gs_dll_call.h $(PSSRC)main.h:$(GLSRC)gsalloc.h +$(PSSRC)main.h:$(GLSRC)stdio_.h $(PSSRC)main.h:$(GLSRC)gxcindex.h -$(PSSRC)main.h:$(GLSRC)stdint_.h $(PSSRC)main.h:$(GLSRC)gsgstate.h -$(PSSRC)main.h:$(GLSRC)gs_dll_call.h -$(PSSRC)main.h:$(GLSRC)stdio_.h -$(PSSRC)main.h:$(GLSRC)gstypes.h +$(PSSRC)main.h:$(GLSRC)stdint_.h +$(PSSRC)main.h:$(GLSRC)gssprintf.h $(PSSRC)main.h:$(GLSRC)std.h +$(PSSRC)main.h:$(GLSRC)gstypes.h $(PSSRC)main.h:$(GLSRC)stdpre.h $(PSSRC)main.h:$(GLGEN)arch.h -$(PSSRC)main.h:$(GLSRC)gssprintf.h $(GLSRC)smtf.h:$(GLSRC)scommon.h $(GLSRC)smtf.h:$(GLSRC)gsstype.h $(GLSRC)smtf.h:$(GLSRC)gsmemory.h $(GLSRC)smtf.h:$(GLSRC)gslibctx.h -$(GLSRC)smtf.h:$(GLSRC)stdint_.h $(GLSRC)smtf.h:$(GLSRC)gs_dll_call.h $(GLSRC)smtf.h:$(GLSRC)stdio_.h -$(GLSRC)smtf.h:$(GLSRC)gstypes.h +$(GLSRC)smtf.h:$(GLSRC)stdint_.h +$(GLSRC)smtf.h:$(GLSRC)gssprintf.h $(GLSRC)smtf.h:$(GLSRC)std.h +$(GLSRC)smtf.h:$(GLSRC)gstypes.h $(GLSRC)smtf.h:$(GLSRC)stdpre.h $(GLSRC)smtf.h:$(GLGEN)arch.h -$(GLSRC)smtf.h:$(GLSRC)gssprintf.h $(PSSRC)bfont.h:$(PSSRC)ifont.h $(PSSRC)bfont.h:$(GLSRC)gxfont.h $(PSSRC)bfont.h:$(PSSRC)iostack.h @@ -5546,56 +5548,56 @@ $(PSSRC)bfont.h:$(PSSRC)isdata.h $(PSSRC)bfont.h:$(PSSRC)imemory.h $(PSSRC)bfont.h:$(PSSRC)ivmspace.h $(PSSRC)bfont.h:$(PSSRC)iref.h -$(PSSRC)bfont.h:$(GLSRC)gxalloc.h $(PSSRC)bfont.h:$(GLSRC)gsgc.h -$(PSSRC)bfont.h:$(GLSRC)gxobj.h +$(PSSRC)bfont.h:$(GLSRC)gxalloc.h $(PSSRC)bfont.h:$(GLSRC)gstext.h +$(PSSRC)bfont.h:$(GLSRC)gxobj.h $(PSSRC)bfont.h:$(GLSRC)gsnamecl.h $(PSSRC)bfont.h:$(GLSRC)gxcspace.h +$(PSSRC)bfont.h:$(GLSRC)gsuid.h +$(PSSRC)bfont.h:$(GLSRC)gsdcolor.h $(PSSRC)bfont.h:$(GLSRC)gsfont.h -$(PSSRC)bfont.h:$(GLSRC)gxpath.h -$(PSSRC)bfont.h:$(GLSRC)gspenum.h +$(PSSRC)bfont.h:$(GLSRC)gxftype.h $(PSSRC)bfont.h:$(GLSRC)gxfrac.h -$(PSSRC)bfont.h:$(GLSRC)gslparam.h -$(PSSRC)bfont.h:$(GLSRC)gsdcolor.h -$(PSSRC)bfont.h:$(GLSRC)gsrect.h $(PSSRC)bfont.h:$(GLSRC)gscms.h -$(PSSRC)bfont.h:$(GLSRC)gxftype.h -$(PSSRC)bfont.h:$(GLSRC)gsdevice.h $(PSSRC)bfont.h:$(GLSRC)gscspace.h -$(PSSRC)bfont.h:$(GLSRC)gsuid.h +$(PSSRC)bfont.h:$(GLSRC)gxpath.h +$(PSSRC)bfont.h:$(GLSRC)gsdevice.h $(PSSRC)bfont.h:$(GLSRC)gxarith.h +$(PSSRC)bfont.h:$(GLSRC)gspenum.h +$(PSSRC)bfont.h:$(GLSRC)gxhttile.h +$(PSSRC)bfont.h:$(GLSRC)gsrect.h +$(PSSRC)bfont.h:$(GLSRC)gslparam.h +$(PSSRC)bfont.h:$(GLSRC)gsiparam.h +$(PSSRC)bfont.h:$(GLSRC)gxbitmap.h +$(PSSRC)bfont.h:$(GLSRC)gsmatrix.h +$(PSSRC)bfont.h:$(GLSRC)gscpm.h $(PSSRC)bfont.h:$(GLSRC)gxfixed.h $(PSSRC)bfont.h:$(GLSRC)gsrefct.h -$(PSSRC)bfont.h:$(GLSRC)gscpm.h -$(PSSRC)bfont.h:$(GLSRC)gsiparam.h -$(PSSRC)bfont.h:$(GLSRC)gxhttile.h -$(PSSRC)bfont.h:$(GLSRC)memento.h $(PSSRC)bfont.h:$(GLSRC)gsparam.h -$(PSSRC)bfont.h:$(GLSRC)gsmatrix.h -$(PSSRC)bfont.h:$(GLSRC)gxbitmap.h +$(PSSRC)bfont.h:$(GLSRC)gsccolor.h $(PSSRC)bfont.h:$(GLSRC)gsstruct.h $(PSSRC)bfont.h:$(GLSRC)gxsync.h -$(PSSRC)bfont.h:$(GLSRC)gscsel.h $(PSSRC)bfont.h:$(GLSRC)scommon.h +$(PSSRC)bfont.h:$(GLSRC)memento.h +$(PSSRC)bfont.h:$(GLSRC)gscsel.h $(PSSRC)bfont.h:$(GLSRC)gsbitmap.h -$(PSSRC)bfont.h:$(GLSRC)gsccolor.h $(PSSRC)bfont.h:$(GLSRC)gsstype.h $(PSSRC)bfont.h:$(GLSRC)gsmemory.h $(PSSRC)bfont.h:$(GLSRC)gpsync.h $(PSSRC)bfont.h:$(GLSRC)gslibctx.h +$(PSSRC)bfont.h:$(GLSRC)gs_dll_call.h $(PSSRC)bfont.h:$(GLSRC)gsalloc.h +$(PSSRC)bfont.h:$(GLSRC)stdio_.h $(PSSRC)bfont.h:$(GLSRC)gxcindex.h -$(PSSRC)bfont.h:$(GLSRC)stdint_.h $(PSSRC)bfont.h:$(GLSRC)gsgstate.h +$(PSSRC)bfont.h:$(GLSRC)stdint_.h +$(PSSRC)bfont.h:$(GLSRC)gssprintf.h $(PSSRC)bfont.h:$(GLSRC)gsccode.h -$(PSSRC)bfont.h:$(GLSRC)gs_dll_call.h -$(PSSRC)bfont.h:$(GLSRC)stdio_.h -$(PSSRC)bfont.h:$(GLSRC)gstypes.h $(PSSRC)bfont.h:$(GLSRC)std.h +$(PSSRC)bfont.h:$(GLSRC)gstypes.h $(PSSRC)bfont.h:$(GLSRC)stdpre.h $(PSSRC)bfont.h:$(GLGEN)arch.h -$(PSSRC)bfont.h:$(GLSRC)gssprintf.h $(PSSRC)icontext.h:$(PSSRC)icstate.h $(PSSRC)icontext.h:$(PSSRC)idsdata.h $(PSSRC)icontext.h:$(PSSRC)iesdata.h @@ -5603,7 +5605,6 @@ $(PSSRC)icontext.h:$(PSSRC)interp.h $(PSSRC)icontext.h:$(PSSRC)opdef.h $(PSSRC)icontext.h:$(PSSRC)files.h $(PSSRC)icontext.h:$(PSSRC)iddstack.h -$(PSSRC)icontext.h:$(GLSRC)stream.h $(PSSRC)icontext.h:$(PSSRC)store.h $(PSSRC)icontext.h:$(PSSRC)iosdata.h $(PSSRC)icontext.h:$(PSSRC)ialloc.h @@ -5612,391 +5613,392 @@ $(PSSRC)icontext.h:$(PSSRC)isdata.h $(PSSRC)icontext.h:$(PSSRC)imemory.h $(PSSRC)icontext.h:$(PSSRC)ivmspace.h $(PSSRC)icontext.h:$(PSSRC)iref.h -$(PSSRC)icontext.h:$(GLSRC)gxalloc.h $(PSSRC)icontext.h:$(GLSRC)gsgc.h +$(PSSRC)icontext.h:$(GLSRC)gxalloc.h $(PSSRC)icontext.h:$(GLSRC)gxobj.h $(PSSRC)icontext.h:$(GLSRC)gsnamecl.h -$(PSSRC)icontext.h:$(GLSRC)gxiodev.h +$(PSSRC)icontext.h:$(GLSRC)stream.h $(PSSRC)icontext.h:$(GLSRC)gxcspace.h -$(PSSRC)icontext.h:$(GLSRC)stat_.h -$(PSSRC)icontext.h:$(GLSRC)gxfrac.h +$(PSSRC)icontext.h:$(GLSRC)gxiodev.h $(PSSRC)icontext.h:$(GLSRC)gsdcolor.h +$(PSSRC)icontext.h:$(GLSRC)gxfrac.h $(PSSRC)icontext.h:$(GLSRC)gscms.h -$(PSSRC)icontext.h:$(GLSRC)gsdevice.h $(PSSRC)icontext.h:$(GLSRC)gscspace.h +$(PSSRC)icontext.h:$(GLSRC)gsdevice.h $(PSSRC)icontext.h:$(GLSRC)gxarith.h -$(PSSRC)icontext.h:$(GLSRC)gsrefct.h -$(PSSRC)icontext.h:$(GLSRC)gsiparam.h $(PSSRC)icontext.h:$(GLSRC)gxhttile.h -$(PSSRC)icontext.h:$(GLSRC)gp.h -$(PSSRC)icontext.h:$(GLSRC)memento.h -$(PSSRC)icontext.h:$(GLSRC)gsparam.h -$(PSSRC)icontext.h:$(GLSRC)gsmatrix.h +$(PSSRC)icontext.h:$(GLSRC)gsiparam.h $(PSSRC)icontext.h:$(GLSRC)gxbitmap.h -$(PSSRC)icontext.h:$(GLSRC)srdline.h +$(PSSRC)icontext.h:$(GLSRC)gsmatrix.h +$(PSSRC)icontext.h:$(GLSRC)gsrefct.h +$(PSSRC)icontext.h:$(GLSRC)gsparam.h +$(PSSRC)icontext.h:$(GLSRC)gp.h +$(PSSRC)icontext.h:$(GLSRC)gsccolor.h $(PSSRC)icontext.h:$(GLSRC)gsstruct.h $(PSSRC)icontext.h:$(GLSRC)gxsync.h -$(PSSRC)icontext.h:$(GLSRC)gscsel.h +$(PSSRC)icontext.h:$(GLSRC)srdline.h $(PSSRC)icontext.h:$(GLSRC)scommon.h +$(PSSRC)icontext.h:$(GLSRC)memento.h +$(PSSRC)icontext.h:$(GLSRC)gscsel.h $(PSSRC)icontext.h:$(GLSRC)gsbitmap.h $(PSSRC)icontext.h:$(GLSRC)gsfname.h -$(PSSRC)icontext.h:$(GLSRC)gsccolor.h $(PSSRC)icontext.h:$(GLSRC)gsstype.h +$(PSSRC)icontext.h:$(GLSRC)stat_.h $(PSSRC)icontext.h:$(GLSRC)gsmemory.h $(PSSRC)icontext.h:$(GLSRC)gpsync.h -$(PSSRC)icontext.h:$(GLSRC)gpgetenv.h $(PSSRC)icontext.h:$(GLSRC)memory_.h +$(PSSRC)icontext.h:$(GLSRC)gpgetenv.h $(PSSRC)icontext.h:$(GLSRC)gslibctx.h $(PSSRC)icontext.h:$(GLSRC)gscdefs.h +$(PSSRC)icontext.h:$(GLSRC)gs_dll_call.h $(PSSRC)icontext.h:$(GLSRC)gsalloc.h +$(PSSRC)icontext.h:$(GLSRC)stdio_.h $(PSSRC)icontext.h:$(GLSRC)gxcindex.h -$(PSSRC)icontext.h:$(GLSRC)stdint_.h $(PSSRC)icontext.h:$(GLSRC)gsgstate.h -$(PSSRC)icontext.h:$(GLSRC)gs_dll_call.h -$(PSSRC)icontext.h:$(GLSRC)stdio_.h -$(PSSRC)icontext.h:$(GLSRC)gstypes.h +$(PSSRC)icontext.h:$(GLSRC)stdint_.h +$(PSSRC)icontext.h:$(GLSRC)gssprintf.h $(PSSRC)icontext.h:$(GLSRC)std.h +$(PSSRC)icontext.h:$(GLSRC)gstypes.h $(PSSRC)icontext.h:$(GLSRC)stdpre.h $(PSSRC)icontext.h:$(GLGEN)arch.h -$(PSSRC)icontext.h:$(GLSRC)gssprintf.h $(PSSRC)ifilter.h:$(PSSRC)istream.h $(PSSRC)ifilter.h:$(PSSRC)imemory.h $(PSSRC)ifilter.h:$(PSSRC)ivmspace.h $(PSSRC)ifilter.h:$(PSSRC)iref.h -$(PSSRC)ifilter.h:$(GLSRC)gxalloc.h $(PSSRC)ifilter.h:$(GLSRC)gsgc.h +$(PSSRC)ifilter.h:$(GLSRC)gxalloc.h $(PSSRC)ifilter.h:$(GLSRC)gxobj.h $(PSSRC)ifilter.h:$(GLSRC)gsnamecl.h $(PSSRC)ifilter.h:$(GLSRC)gxcspace.h -$(PSSRC)ifilter.h:$(GLSRC)gxfrac.h $(PSSRC)ifilter.h:$(GLSRC)gsdcolor.h +$(PSSRC)ifilter.h:$(GLSRC)gxfrac.h $(PSSRC)ifilter.h:$(GLSRC)gscms.h -$(PSSRC)ifilter.h:$(GLSRC)gsdevice.h $(PSSRC)ifilter.h:$(GLSRC)gscspace.h +$(PSSRC)ifilter.h:$(GLSRC)gsdevice.h $(PSSRC)ifilter.h:$(GLSRC)gxarith.h -$(PSSRC)ifilter.h:$(GLSRC)gsrefct.h -$(PSSRC)ifilter.h:$(GLSRC)gsiparam.h $(PSSRC)ifilter.h:$(GLSRC)gxhttile.h -$(PSSRC)ifilter.h:$(GLSRC)memento.h -$(PSSRC)ifilter.h:$(GLSRC)gsparam.h -$(PSSRC)ifilter.h:$(GLSRC)gsmatrix.h +$(PSSRC)ifilter.h:$(GLSRC)gsiparam.h $(PSSRC)ifilter.h:$(GLSRC)gxbitmap.h +$(PSSRC)ifilter.h:$(GLSRC)gsmatrix.h +$(PSSRC)ifilter.h:$(GLSRC)gsrefct.h +$(PSSRC)ifilter.h:$(GLSRC)gsparam.h +$(PSSRC)ifilter.h:$(GLSRC)gsccolor.h $(PSSRC)ifilter.h:$(GLSRC)gsstruct.h $(PSSRC)ifilter.h:$(GLSRC)gxsync.h -$(PSSRC)ifilter.h:$(GLSRC)gscsel.h $(PSSRC)ifilter.h:$(GLSRC)scommon.h +$(PSSRC)ifilter.h:$(GLSRC)memento.h +$(PSSRC)ifilter.h:$(GLSRC)gscsel.h $(PSSRC)ifilter.h:$(GLSRC)gsbitmap.h -$(PSSRC)ifilter.h:$(GLSRC)gsccolor.h $(PSSRC)ifilter.h:$(GLSRC)gsstype.h $(PSSRC)ifilter.h:$(GLSRC)gsmemory.h $(PSSRC)ifilter.h:$(GLSRC)gpsync.h $(PSSRC)ifilter.h:$(GLSRC)gslibctx.h +$(PSSRC)ifilter.h:$(GLSRC)gs_dll_call.h $(PSSRC)ifilter.h:$(GLSRC)gsalloc.h +$(PSSRC)ifilter.h:$(GLSRC)stdio_.h $(PSSRC)ifilter.h:$(GLSRC)gxcindex.h -$(PSSRC)ifilter.h:$(GLSRC)stdint_.h $(PSSRC)ifilter.h:$(GLSRC)gsgstate.h -$(PSSRC)ifilter.h:$(GLSRC)gs_dll_call.h -$(PSSRC)ifilter.h:$(GLSRC)stdio_.h -$(PSSRC)ifilter.h:$(GLSRC)gstypes.h +$(PSSRC)ifilter.h:$(GLSRC)stdint_.h +$(PSSRC)ifilter.h:$(GLSRC)gssprintf.h $(PSSRC)ifilter.h:$(GLSRC)std.h +$(PSSRC)ifilter.h:$(GLSRC)gstypes.h $(PSSRC)ifilter.h:$(GLSRC)stdpre.h $(PSSRC)ifilter.h:$(GLGEN)arch.h -$(PSSRC)ifilter.h:$(GLSRC)gssprintf.h $(PSSRC)igstate.h:$(GLSRC)gsstate.h $(PSSRC)igstate.h:$(GLSRC)gsovrc.h $(PSSRC)igstate.h:$(GLSRC)gscolor.h -$(PSSRC)igstate.h:$(GLSRC)gsline.h $(PSSRC)igstate.h:$(GLSRC)gxcomp.h +$(PSSRC)igstate.h:$(GLSRC)gsline.h $(PSSRC)igstate.h:$(PSSRC)istruct.h $(PSSRC)igstate.h:$(GLSRC)gxbitfmt.h $(PSSRC)igstate.h:$(PSSRC)imemory.h $(PSSRC)igstate.h:$(PSSRC)ivmspace.h $(PSSRC)igstate.h:$(GLSRC)gsht.h $(PSSRC)igstate.h:$(PSSRC)iref.h -$(PSSRC)igstate.h:$(GLSRC)gxalloc.h $(PSSRC)igstate.h:$(GLSRC)gsgc.h +$(PSSRC)igstate.h:$(GLSRC)gxalloc.h $(PSSRC)igstate.h:$(GLSRC)gxobj.h -$(PSSRC)igstate.h:$(GLSRC)gxstate.h $(PSSRC)igstate.h:$(GLSRC)gsnamecl.h +$(PSSRC)igstate.h:$(GLSRC)gxstate.h $(PSSRC)igstate.h:$(GLSRC)gxcspace.h -$(PSSRC)igstate.h:$(GLSRC)gxtmap.h -$(PSSRC)igstate.h:$(GLSRC)gxfrac.h -$(PSSRC)igstate.h:$(GLSRC)gslparam.h $(PSSRC)igstate.h:$(GLSRC)gsdcolor.h +$(PSSRC)igstate.h:$(GLSRC)gxfrac.h $(PSSRC)igstate.h:$(GLSRC)gscms.h -$(PSSRC)igstate.h:$(GLSRC)gsdevice.h $(PSSRC)igstate.h:$(GLSRC)gscspace.h +$(PSSRC)igstate.h:$(GLSRC)gsdevice.h $(PSSRC)igstate.h:$(GLSRC)gxarith.h -$(PSSRC)igstate.h:$(GLSRC)gsrefct.h -$(PSSRC)igstate.h:$(GLSRC)gscpm.h -$(PSSRC)igstate.h:$(GLSRC)gsiparam.h $(PSSRC)igstate.h:$(GLSRC)gxhttile.h -$(PSSRC)igstate.h:$(GLSRC)memento.h -$(PSSRC)igstate.h:$(GLSRC)gsparam.h -$(PSSRC)igstate.h:$(GLSRC)gsmatrix.h +$(PSSRC)igstate.h:$(GLSRC)gslparam.h +$(PSSRC)igstate.h:$(GLSRC)gsiparam.h $(PSSRC)igstate.h:$(GLSRC)gxbitmap.h +$(PSSRC)igstate.h:$(GLSRC)gsmatrix.h +$(PSSRC)igstate.h:$(GLSRC)gscpm.h +$(PSSRC)igstate.h:$(GLSRC)gsrefct.h +$(PSSRC)igstate.h:$(GLSRC)gsparam.h +$(PSSRC)igstate.h:$(GLSRC)gsccolor.h $(PSSRC)igstate.h:$(GLSRC)gsstruct.h $(PSSRC)igstate.h:$(GLSRC)gxsync.h -$(PSSRC)igstate.h:$(GLSRC)gscsel.h $(PSSRC)igstate.h:$(GLSRC)scommon.h +$(PSSRC)igstate.h:$(GLSRC)memento.h +$(PSSRC)igstate.h:$(GLSRC)gscsel.h $(PSSRC)igstate.h:$(GLSRC)gsbitmap.h -$(PSSRC)igstate.h:$(GLSRC)gsccolor.h $(PSSRC)igstate.h:$(GLSRC)gsstype.h +$(PSSRC)igstate.h:$(GLSRC)gxtmap.h $(PSSRC)igstate.h:$(GLSRC)gsmemory.h $(PSSRC)igstate.h:$(GLSRC)gpsync.h $(PSSRC)igstate.h:$(GLSRC)gslibctx.h +$(PSSRC)igstate.h:$(GLSRC)gs_dll_call.h $(PSSRC)igstate.h:$(GLSRC)gsalloc.h +$(PSSRC)igstate.h:$(GLSRC)stdio_.h $(PSSRC)igstate.h:$(GLSRC)gscompt.h $(PSSRC)igstate.h:$(GLSRC)gxcindex.h -$(PSSRC)igstate.h:$(GLSRC)stdint_.h $(PSSRC)igstate.h:$(GLSRC)gsgstate.h -$(PSSRC)igstate.h:$(GLSRC)gs_dll_call.h -$(PSSRC)igstate.h:$(GLSRC)stdio_.h -$(PSSRC)igstate.h:$(GLSRC)gstypes.h +$(PSSRC)igstate.h:$(GLSRC)stdint_.h +$(PSSRC)igstate.h:$(GLSRC)gssprintf.h $(PSSRC)igstate.h:$(GLSRC)std.h +$(PSSRC)igstate.h:$(GLSRC)gstypes.h $(PSSRC)igstate.h:$(GLSRC)stdpre.h $(PSSRC)igstate.h:$(GLGEN)arch.h -$(PSSRC)igstate.h:$(GLSRC)gssprintf.h $(PSSRC)iscan.h:$(PSSRC)iref.h $(PSSRC)iscan.h:$(GLSRC)sa85x.h -$(PSSRC)iscan.h:$(GLSRC)gxalloc.h $(PSSRC)iscan.h:$(GLSRC)sa85d.h $(PSSRC)iscan.h:$(GLSRC)sstring.h $(PSSRC)iscan.h:$(PSSRC)inamestr.h $(PSSRC)iscan.h:$(PSSRC)inameidx.h +$(PSSRC)iscan.h:$(GLSRC)gxalloc.h $(PSSRC)iscan.h:$(GLSRC)gxobj.h $(PSSRC)iscan.h:$(GLSRC)gsnamecl.h $(PSSRC)iscan.h:$(GLSRC)gxcspace.h -$(PSSRC)iscan.h:$(GLSRC)gxfrac.h $(PSSRC)iscan.h:$(GLSRC)gsdcolor.h +$(PSSRC)iscan.h:$(GLSRC)gxfrac.h $(PSSRC)iscan.h:$(GLSRC)gscms.h -$(PSSRC)iscan.h:$(GLSRC)gsdevice.h $(PSSRC)iscan.h:$(GLSRC)gscspace.h +$(PSSRC)iscan.h:$(GLSRC)gsdevice.h $(PSSRC)iscan.h:$(GLSRC)gxarith.h -$(PSSRC)iscan.h:$(GLSRC)gsrefct.h -$(PSSRC)iscan.h:$(GLSRC)gsiparam.h $(PSSRC)iscan.h:$(GLSRC)gxhttile.h -$(PSSRC)iscan.h:$(GLSRC)memento.h -$(PSSRC)iscan.h:$(GLSRC)gsparam.h -$(PSSRC)iscan.h:$(GLSRC)gsmatrix.h +$(PSSRC)iscan.h:$(GLSRC)gsiparam.h $(PSSRC)iscan.h:$(GLSRC)gxbitmap.h +$(PSSRC)iscan.h:$(GLSRC)gsmatrix.h +$(PSSRC)iscan.h:$(GLSRC)gsrefct.h +$(PSSRC)iscan.h:$(GLSRC)gsparam.h +$(PSSRC)iscan.h:$(GLSRC)gsccolor.h $(PSSRC)iscan.h:$(GLSRC)gsstruct.h $(PSSRC)iscan.h:$(GLSRC)gxsync.h -$(PSSRC)iscan.h:$(GLSRC)gscsel.h $(PSSRC)iscan.h:$(GLSRC)scommon.h +$(PSSRC)iscan.h:$(GLSRC)memento.h +$(PSSRC)iscan.h:$(GLSRC)gscsel.h $(PSSRC)iscan.h:$(GLSRC)gsbitmap.h -$(PSSRC)iscan.h:$(GLSRC)gsccolor.h $(PSSRC)iscan.h:$(GLSRC)gsstype.h $(PSSRC)iscan.h:$(GLSRC)gsmemory.h $(PSSRC)iscan.h:$(GLSRC)gpsync.h $(PSSRC)iscan.h:$(GLSRC)gslibctx.h +$(PSSRC)iscan.h:$(GLSRC)gs_dll_call.h $(PSSRC)iscan.h:$(GLSRC)gsalloc.h +$(PSSRC)iscan.h:$(GLSRC)stdio_.h $(PSSRC)iscan.h:$(GLSRC)gxcindex.h -$(PSSRC)iscan.h:$(GLSRC)stdint_.h $(PSSRC)iscan.h:$(GLSRC)gsgstate.h -$(PSSRC)iscan.h:$(GLSRC)gs_dll_call.h -$(PSSRC)iscan.h:$(GLSRC)stdio_.h -$(PSSRC)iscan.h:$(GLSRC)gstypes.h +$(PSSRC)iscan.h:$(GLSRC)stdint_.h +$(PSSRC)iscan.h:$(GLSRC)gssprintf.h $(PSSRC)iscan.h:$(GLSRC)std.h +$(PSSRC)iscan.h:$(GLSRC)gstypes.h $(PSSRC)iscan.h:$(GLSRC)stdpre.h $(PSSRC)iscan.h:$(GLGEN)arch.h -$(PSSRC)iscan.h:$(GLSRC)gssprintf.h $(PSSRC)zfile.h:$(PSSRC)iref.h $(PSSRC)zfile.h:$(GLSRC)gxalloc.h $(PSSRC)zfile.h:$(GLSRC)gxobj.h $(PSSRC)zfile.h:$(GLSRC)gsnamecl.h $(PSSRC)zfile.h:$(GLSRC)gxcspace.h -$(PSSRC)zfile.h:$(GLSRC)gxfrac.h $(PSSRC)zfile.h:$(GLSRC)gsdcolor.h +$(PSSRC)zfile.h:$(GLSRC)gxfrac.h $(PSSRC)zfile.h:$(GLSRC)gscms.h -$(PSSRC)zfile.h:$(GLSRC)gsdevice.h $(PSSRC)zfile.h:$(GLSRC)gscspace.h +$(PSSRC)zfile.h:$(GLSRC)gsdevice.h $(PSSRC)zfile.h:$(GLSRC)gxarith.h -$(PSSRC)zfile.h:$(GLSRC)gsrefct.h -$(PSSRC)zfile.h:$(GLSRC)gsiparam.h $(PSSRC)zfile.h:$(GLSRC)gxhttile.h -$(PSSRC)zfile.h:$(GLSRC)memento.h -$(PSSRC)zfile.h:$(GLSRC)gsparam.h -$(PSSRC)zfile.h:$(GLSRC)gsmatrix.h +$(PSSRC)zfile.h:$(GLSRC)gsiparam.h $(PSSRC)zfile.h:$(GLSRC)gxbitmap.h +$(PSSRC)zfile.h:$(GLSRC)gsmatrix.h +$(PSSRC)zfile.h:$(GLSRC)gsrefct.h +$(PSSRC)zfile.h:$(GLSRC)gsparam.h +$(PSSRC)zfile.h:$(GLSRC)gsccolor.h $(PSSRC)zfile.h:$(GLSRC)gsstruct.h $(PSSRC)zfile.h:$(GLSRC)gxsync.h -$(PSSRC)zfile.h:$(GLSRC)gscsel.h $(PSSRC)zfile.h:$(GLSRC)scommon.h +$(PSSRC)zfile.h:$(GLSRC)memento.h +$(PSSRC)zfile.h:$(GLSRC)gscsel.h $(PSSRC)zfile.h:$(GLSRC)gsbitmap.h $(PSSRC)zfile.h:$(GLSRC)gsfname.h -$(PSSRC)zfile.h:$(GLSRC)gsccolor.h $(PSSRC)zfile.h:$(GLSRC)gsstype.h $(PSSRC)zfile.h:$(GLSRC)gsmemory.h $(PSSRC)zfile.h:$(GLSRC)gpsync.h $(PSSRC)zfile.h:$(GLSRC)gslibctx.h +$(PSSRC)zfile.h:$(GLSRC)gs_dll_call.h $(PSSRC)zfile.h:$(GLSRC)gsalloc.h +$(PSSRC)zfile.h:$(GLSRC)stdio_.h $(PSSRC)zfile.h:$(GLSRC)gxcindex.h -$(PSSRC)zfile.h:$(GLSRC)stdint_.h $(PSSRC)zfile.h:$(GLSRC)gsgstate.h -$(PSSRC)zfile.h:$(GLSRC)gs_dll_call.h -$(PSSRC)zfile.h:$(GLSRC)stdio_.h -$(PSSRC)zfile.h:$(GLSRC)gstypes.h +$(PSSRC)zfile.h:$(GLSRC)stdint_.h +$(PSSRC)zfile.h:$(GLSRC)gssprintf.h $(PSSRC)zfile.h:$(GLSRC)std.h +$(PSSRC)zfile.h:$(GLSRC)gstypes.h $(PSSRC)zfile.h:$(GLSRC)stdpre.h $(PSSRC)zfile.h:$(GLGEN)arch.h -$(PSSRC)zfile.h:$(GLSRC)gssprintf.h $(PSSRC)ibnum.h:$(PSSRC)iref.h $(PSSRC)ibnum.h:$(GLSRC)gxalloc.h $(PSSRC)ibnum.h:$(GLSRC)gxobj.h $(PSSRC)ibnum.h:$(GLSRC)gsnamecl.h $(PSSRC)ibnum.h:$(GLSRC)gxcspace.h -$(PSSRC)ibnum.h:$(GLSRC)gxfrac.h $(PSSRC)ibnum.h:$(GLSRC)gsdcolor.h +$(PSSRC)ibnum.h:$(GLSRC)gxfrac.h $(PSSRC)ibnum.h:$(GLSRC)gscms.h -$(PSSRC)ibnum.h:$(GLSRC)gsdevice.h $(PSSRC)ibnum.h:$(GLSRC)gscspace.h +$(PSSRC)ibnum.h:$(GLSRC)gsdevice.h $(PSSRC)ibnum.h:$(GLSRC)gxarith.h -$(PSSRC)ibnum.h:$(GLSRC)gsrefct.h -$(PSSRC)ibnum.h:$(GLSRC)gsiparam.h $(PSSRC)ibnum.h:$(GLSRC)gxhttile.h -$(PSSRC)ibnum.h:$(GLSRC)memento.h -$(PSSRC)ibnum.h:$(GLSRC)gsparam.h -$(PSSRC)ibnum.h:$(GLSRC)gsmatrix.h +$(PSSRC)ibnum.h:$(GLSRC)gsiparam.h $(PSSRC)ibnum.h:$(GLSRC)gxbitmap.h +$(PSSRC)ibnum.h:$(GLSRC)gsmatrix.h +$(PSSRC)ibnum.h:$(GLSRC)gsrefct.h +$(PSSRC)ibnum.h:$(GLSRC)gsparam.h +$(PSSRC)ibnum.h:$(GLSRC)gsccolor.h $(PSSRC)ibnum.h:$(GLSRC)gsstruct.h $(PSSRC)ibnum.h:$(GLSRC)gxsync.h -$(PSSRC)ibnum.h:$(GLSRC)gscsel.h $(PSSRC)ibnum.h:$(GLSRC)scommon.h +$(PSSRC)ibnum.h:$(GLSRC)memento.h +$(PSSRC)ibnum.h:$(GLSRC)gscsel.h $(PSSRC)ibnum.h:$(GLSRC)gsbitmap.h -$(PSSRC)ibnum.h:$(GLSRC)gsccolor.h $(PSSRC)ibnum.h:$(GLSRC)gsstype.h $(PSSRC)ibnum.h:$(GLSRC)gsmemory.h $(PSSRC)ibnum.h:$(GLSRC)gpsync.h $(PSSRC)ibnum.h:$(GLSRC)gslibctx.h +$(PSSRC)ibnum.h:$(GLSRC)gs_dll_call.h $(PSSRC)ibnum.h:$(GLSRC)gsalloc.h +$(PSSRC)ibnum.h:$(GLSRC)stdio_.h $(PSSRC)ibnum.h:$(GLSRC)gxcindex.h -$(PSSRC)ibnum.h:$(GLSRC)stdint_.h $(PSSRC)ibnum.h:$(GLSRC)gsgstate.h -$(PSSRC)ibnum.h:$(GLSRC)gs_dll_call.h -$(PSSRC)ibnum.h:$(GLSRC)stdio_.h -$(PSSRC)ibnum.h:$(GLSRC)gstypes.h +$(PSSRC)ibnum.h:$(GLSRC)stdint_.h +$(PSSRC)ibnum.h:$(GLSRC)gssprintf.h $(PSSRC)ibnum.h:$(GLSRC)std.h +$(PSSRC)ibnum.h:$(GLSRC)gstypes.h $(PSSRC)ibnum.h:$(GLSRC)stdpre.h $(PSSRC)ibnum.h:$(GLGEN)arch.h -$(PSSRC)ibnum.h:$(GLSRC)gssprintf.h $(PSSRC)zcolor.h:$(PSSRC)iref.h $(PSSRC)zcolor.h:$(GLSRC)gxalloc.h $(PSSRC)zcolor.h:$(GLSRC)gxobj.h $(PSSRC)zcolor.h:$(GLSRC)gsnamecl.h $(PSSRC)zcolor.h:$(GLSRC)gxcspace.h -$(PSSRC)zcolor.h:$(GLSRC)gxfrac.h $(PSSRC)zcolor.h:$(GLSRC)gsdcolor.h +$(PSSRC)zcolor.h:$(GLSRC)gxfrac.h $(PSSRC)zcolor.h:$(GLSRC)gscms.h -$(PSSRC)zcolor.h:$(GLSRC)gsdevice.h $(PSSRC)zcolor.h:$(GLSRC)gscspace.h +$(PSSRC)zcolor.h:$(GLSRC)gsdevice.h $(PSSRC)zcolor.h:$(GLSRC)gxarith.h -$(PSSRC)zcolor.h:$(GLSRC)gsrefct.h -$(PSSRC)zcolor.h:$(GLSRC)gsiparam.h $(PSSRC)zcolor.h:$(GLSRC)gxhttile.h -$(PSSRC)zcolor.h:$(GLSRC)memento.h -$(PSSRC)zcolor.h:$(GLSRC)gsparam.h -$(PSSRC)zcolor.h:$(GLSRC)gsmatrix.h +$(PSSRC)zcolor.h:$(GLSRC)gsiparam.h $(PSSRC)zcolor.h:$(GLSRC)gxbitmap.h +$(PSSRC)zcolor.h:$(GLSRC)gsmatrix.h +$(PSSRC)zcolor.h:$(GLSRC)gsrefct.h +$(PSSRC)zcolor.h:$(GLSRC)gsparam.h +$(PSSRC)zcolor.h:$(GLSRC)gsccolor.h $(PSSRC)zcolor.h:$(GLSRC)gsstruct.h $(PSSRC)zcolor.h:$(GLSRC)gxsync.h -$(PSSRC)zcolor.h:$(GLSRC)gscsel.h $(PSSRC)zcolor.h:$(GLSRC)scommon.h +$(PSSRC)zcolor.h:$(GLSRC)memento.h +$(PSSRC)zcolor.h:$(GLSRC)gscsel.h $(PSSRC)zcolor.h:$(GLSRC)gsbitmap.h -$(PSSRC)zcolor.h:$(GLSRC)gsccolor.h $(PSSRC)zcolor.h:$(GLSRC)gsstype.h $(PSSRC)zcolor.h:$(GLSRC)gsmemory.h $(PSSRC)zcolor.h:$(GLSRC)gpsync.h $(PSSRC)zcolor.h:$(GLSRC)gslibctx.h +$(PSSRC)zcolor.h:$(GLSRC)gs_dll_call.h $(PSSRC)zcolor.h:$(GLSRC)gsalloc.h +$(PSSRC)zcolor.h:$(GLSRC)stdio_.h $(PSSRC)zcolor.h:$(GLSRC)gxcindex.h -$(PSSRC)zcolor.h:$(GLSRC)stdint_.h $(PSSRC)zcolor.h:$(GLSRC)gsgstate.h -$(PSSRC)zcolor.h:$(GLSRC)gs_dll_call.h -$(PSSRC)zcolor.h:$(GLSRC)stdio_.h -$(PSSRC)zcolor.h:$(GLSRC)gstypes.h +$(PSSRC)zcolor.h:$(GLSRC)stdint_.h +$(PSSRC)zcolor.h:$(GLSRC)gssprintf.h $(PSSRC)zcolor.h:$(GLSRC)std.h +$(PSSRC)zcolor.h:$(GLSRC)gstypes.h $(PSSRC)zcolor.h:$(GLSRC)stdpre.h $(PSSRC)zcolor.h:$(GLGEN)arch.h -$(PSSRC)zcolor.h:$(GLSRC)gssprintf.h $(PSSRC)zcie.h:$(PSSRC)iref.h $(PSSRC)zcie.h:$(GLSRC)gxalloc.h $(PSSRC)zcie.h:$(GLSRC)gxobj.h $(PSSRC)zcie.h:$(GLSRC)gsnamecl.h $(PSSRC)zcie.h:$(GLSRC)gxcspace.h -$(PSSRC)zcie.h:$(GLSRC)gxfrac.h $(PSSRC)zcie.h:$(GLSRC)gsdcolor.h +$(PSSRC)zcie.h:$(GLSRC)gxfrac.h $(PSSRC)zcie.h:$(GLSRC)gscms.h -$(PSSRC)zcie.h:$(GLSRC)gsdevice.h $(PSSRC)zcie.h:$(GLSRC)gscspace.h +$(PSSRC)zcie.h:$(GLSRC)gsdevice.h $(PSSRC)zcie.h:$(GLSRC)gxarith.h -$(PSSRC)zcie.h:$(GLSRC)gsrefct.h -$(PSSRC)zcie.h:$(GLSRC)gsiparam.h $(PSSRC)zcie.h:$(GLSRC)gxhttile.h -$(PSSRC)zcie.h:$(GLSRC)memento.h -$(PSSRC)zcie.h:$(GLSRC)gsparam.h -$(PSSRC)zcie.h:$(GLSRC)gsmatrix.h +$(PSSRC)zcie.h:$(GLSRC)gsiparam.h $(PSSRC)zcie.h:$(GLSRC)gxbitmap.h +$(PSSRC)zcie.h:$(GLSRC)gsmatrix.h +$(PSSRC)zcie.h:$(GLSRC)gsrefct.h +$(PSSRC)zcie.h:$(GLSRC)gsparam.h +$(PSSRC)zcie.h:$(GLSRC)gsccolor.h $(PSSRC)zcie.h:$(GLSRC)gsstruct.h $(PSSRC)zcie.h:$(GLSRC)gxsync.h -$(PSSRC)zcie.h:$(GLSRC)gscsel.h $(PSSRC)zcie.h:$(GLSRC)scommon.h +$(PSSRC)zcie.h:$(GLSRC)memento.h +$(PSSRC)zcie.h:$(GLSRC)gscsel.h $(PSSRC)zcie.h:$(GLSRC)gsbitmap.h -$(PSSRC)zcie.h:$(GLSRC)gsccolor.h $(PSSRC)zcie.h:$(GLSRC)gsstype.h $(PSSRC)zcie.h:$(GLSRC)gsmemory.h $(PSSRC)zcie.h:$(GLSRC)gpsync.h $(PSSRC)zcie.h:$(GLSRC)gslibctx.h +$(PSSRC)zcie.h:$(GLSRC)gs_dll_call.h $(PSSRC)zcie.h:$(GLSRC)gsalloc.h +$(PSSRC)zcie.h:$(GLSRC)stdio_.h $(PSSRC)zcie.h:$(GLSRC)gxcindex.h -$(PSSRC)zcie.h:$(GLSRC)stdint_.h $(PSSRC)zcie.h:$(GLSRC)gsgstate.h -$(PSSRC)zcie.h:$(GLSRC)gs_dll_call.h -$(PSSRC)zcie.h:$(GLSRC)stdio_.h -$(PSSRC)zcie.h:$(GLSRC)gstypes.h +$(PSSRC)zcie.h:$(GLSRC)stdint_.h +$(PSSRC)zcie.h:$(GLSRC)gssprintf.h $(PSSRC)zcie.h:$(GLSRC)std.h +$(PSSRC)zcie.h:$(GLSRC)gstypes.h $(PSSRC)zcie.h:$(GLSRC)stdpre.h $(PSSRC)zcie.h:$(GLGEN)arch.h -$(PSSRC)zcie.h:$(GLSRC)gssprintf.h $(PSSRC)zicc.h:$(PSSRC)iref.h $(PSSRC)zicc.h:$(GLSRC)gxalloc.h $(PSSRC)zicc.h:$(GLSRC)gxobj.h $(PSSRC)zicc.h:$(GLSRC)gsnamecl.h $(PSSRC)zicc.h:$(GLSRC)gxcspace.h -$(PSSRC)zicc.h:$(GLSRC)gxfrac.h $(PSSRC)zicc.h:$(GLSRC)gsdcolor.h +$(PSSRC)zicc.h:$(GLSRC)gxfrac.h $(PSSRC)zicc.h:$(GLSRC)gscms.h -$(PSSRC)zicc.h:$(GLSRC)gsdevice.h $(PSSRC)zicc.h:$(GLSRC)gscspace.h +$(PSSRC)zicc.h:$(GLSRC)gsdevice.h $(PSSRC)zicc.h:$(GLSRC)gxarith.h -$(PSSRC)zicc.h:$(GLSRC)gsrefct.h -$(PSSRC)zicc.h:$(GLSRC)gsiparam.h $(PSSRC)zicc.h:$(GLSRC)gxhttile.h -$(PSSRC)zicc.h:$(GLSRC)memento.h -$(PSSRC)zicc.h:$(GLSRC)gsparam.h -$(PSSRC)zicc.h:$(GLSRC)gsmatrix.h +$(PSSRC)zicc.h:$(GLSRC)gsiparam.h $(PSSRC)zicc.h:$(GLSRC)gxbitmap.h +$(PSSRC)zicc.h:$(GLSRC)gsmatrix.h +$(PSSRC)zicc.h:$(GLSRC)gsrefct.h +$(PSSRC)zicc.h:$(GLSRC)gsparam.h +$(PSSRC)zicc.h:$(GLSRC)gsccolor.h $(PSSRC)zicc.h:$(GLSRC)gsstruct.h $(PSSRC)zicc.h:$(GLSRC)gxsync.h -$(PSSRC)zicc.h:$(GLSRC)gscsel.h $(PSSRC)zicc.h:$(GLSRC)scommon.h +$(PSSRC)zicc.h:$(GLSRC)memento.h +$(PSSRC)zicc.h:$(GLSRC)gscsel.h $(PSSRC)zicc.h:$(GLSRC)gsbitmap.h -$(PSSRC)zicc.h:$(GLSRC)gsccolor.h $(PSSRC)zicc.h:$(GLSRC)gsstype.h $(PSSRC)zicc.h:$(GLSRC)gsmemory.h $(PSSRC)zicc.h:$(GLSRC)gpsync.h $(PSSRC)zicc.h:$(GLSRC)gslibctx.h +$(PSSRC)zicc.h:$(GLSRC)gs_dll_call.h $(PSSRC)zicc.h:$(GLSRC)gsalloc.h +$(PSSRC)zicc.h:$(GLSRC)stdio_.h $(PSSRC)zicc.h:$(GLSRC)gxcindex.h -$(PSSRC)zicc.h:$(GLSRC)stdint_.h $(PSSRC)zicc.h:$(GLSRC)gsgstate.h -$(PSSRC)zicc.h:$(GLSRC)gs_dll_call.h -$(PSSRC)zicc.h:$(GLSRC)stdio_.h -$(PSSRC)zicc.h:$(GLSRC)gstypes.h +$(PSSRC)zicc.h:$(GLSRC)stdint_.h +$(PSSRC)zicc.h:$(GLSRC)gssprintf.h $(PSSRC)zicc.h:$(GLSRC)std.h +$(PSSRC)zicc.h:$(GLSRC)gstypes.h $(PSSRC)zicc.h:$(GLSRC)stdpre.h $(PSSRC)zicc.h:$(GLGEN)arch.h -$(PSSRC)zicc.h:$(GLSRC)gssprintf.h $(PSSRC)zfrsd.h:$(PSSRC)iostack.h $(PSSRC)zfrsd.h:$(PSSRC)istack.h $(PSSRC)zfrsd.h:$(PSSRC)iosdata.h @@ -6004,166 +6006,166 @@ $(PSSRC)zfrsd.h:$(PSSRC)isdata.h $(PSSRC)zfrsd.h:$(PSSRC)imemory.h $(PSSRC)zfrsd.h:$(PSSRC)ivmspace.h $(PSSRC)zfrsd.h:$(PSSRC)iref.h -$(PSSRC)zfrsd.h:$(GLSRC)gxalloc.h $(PSSRC)zfrsd.h:$(GLSRC)gsgc.h +$(PSSRC)zfrsd.h:$(GLSRC)gxalloc.h $(PSSRC)zfrsd.h:$(GLSRC)gxobj.h $(PSSRC)zfrsd.h:$(GLSRC)gsnamecl.h $(PSSRC)zfrsd.h:$(GLSRC)gxcspace.h -$(PSSRC)zfrsd.h:$(GLSRC)gxfrac.h $(PSSRC)zfrsd.h:$(GLSRC)gsdcolor.h +$(PSSRC)zfrsd.h:$(GLSRC)gxfrac.h $(PSSRC)zfrsd.h:$(GLSRC)gscms.h -$(PSSRC)zfrsd.h:$(GLSRC)gsdevice.h $(PSSRC)zfrsd.h:$(GLSRC)gscspace.h +$(PSSRC)zfrsd.h:$(GLSRC)gsdevice.h $(PSSRC)zfrsd.h:$(GLSRC)gxarith.h -$(PSSRC)zfrsd.h:$(GLSRC)gsrefct.h -$(PSSRC)zfrsd.h:$(GLSRC)gsiparam.h $(PSSRC)zfrsd.h:$(GLSRC)gxhttile.h -$(PSSRC)zfrsd.h:$(GLSRC)memento.h -$(PSSRC)zfrsd.h:$(GLSRC)gsparam.h -$(PSSRC)zfrsd.h:$(GLSRC)gsmatrix.h +$(PSSRC)zfrsd.h:$(GLSRC)gsiparam.h $(PSSRC)zfrsd.h:$(GLSRC)gxbitmap.h +$(PSSRC)zfrsd.h:$(GLSRC)gsmatrix.h +$(PSSRC)zfrsd.h:$(GLSRC)gsrefct.h +$(PSSRC)zfrsd.h:$(GLSRC)gsparam.h +$(PSSRC)zfrsd.h:$(GLSRC)gsccolor.h $(PSSRC)zfrsd.h:$(GLSRC)gsstruct.h $(PSSRC)zfrsd.h:$(GLSRC)gxsync.h -$(PSSRC)zfrsd.h:$(GLSRC)gscsel.h $(PSSRC)zfrsd.h:$(GLSRC)scommon.h +$(PSSRC)zfrsd.h:$(GLSRC)memento.h +$(PSSRC)zfrsd.h:$(GLSRC)gscsel.h $(PSSRC)zfrsd.h:$(GLSRC)gsbitmap.h -$(PSSRC)zfrsd.h:$(GLSRC)gsccolor.h $(PSSRC)zfrsd.h:$(GLSRC)gsstype.h $(PSSRC)zfrsd.h:$(GLSRC)gsmemory.h $(PSSRC)zfrsd.h:$(GLSRC)gpsync.h $(PSSRC)zfrsd.h:$(GLSRC)gslibctx.h +$(PSSRC)zfrsd.h:$(GLSRC)gs_dll_call.h $(PSSRC)zfrsd.h:$(GLSRC)gsalloc.h +$(PSSRC)zfrsd.h:$(GLSRC)stdio_.h $(PSSRC)zfrsd.h:$(GLSRC)gxcindex.h -$(PSSRC)zfrsd.h:$(GLSRC)stdint_.h $(PSSRC)zfrsd.h:$(GLSRC)gsgstate.h -$(PSSRC)zfrsd.h:$(GLSRC)gs_dll_call.h -$(PSSRC)zfrsd.h:$(GLSRC)stdio_.h -$(PSSRC)zfrsd.h:$(GLSRC)gstypes.h +$(PSSRC)zfrsd.h:$(GLSRC)stdint_.h +$(PSSRC)zfrsd.h:$(GLSRC)gssprintf.h $(PSSRC)zfrsd.h:$(GLSRC)std.h +$(PSSRC)zfrsd.h:$(GLSRC)gstypes.h $(PSSRC)zfrsd.h:$(GLSRC)stdpre.h $(PSSRC)zfrsd.h:$(GLGEN)arch.h -$(PSSRC)zfrsd.h:$(GLSRC)gssprintf.h $(PSSRC)dscparse.h:$(GLSRC)stdpre.h $(PSSRC)ifunc.h:$(PSSRC)iref.h $(PSSRC)ifunc.h:$(GLSRC)gxalloc.h $(PSSRC)ifunc.h:$(GLSRC)gxobj.h -$(PSSRC)ifunc.h:$(GLSRC)gsfunc.h $(PSSRC)ifunc.h:$(GLSRC)gsnamecl.h $(PSSRC)ifunc.h:$(GLSRC)gxcspace.h -$(PSSRC)ifunc.h:$(GLSRC)gxfrac.h +$(PSSRC)ifunc.h:$(GLSRC)gsfunc.h $(PSSRC)ifunc.h:$(GLSRC)gsdcolor.h +$(PSSRC)ifunc.h:$(GLSRC)gxfrac.h $(PSSRC)ifunc.h:$(GLSRC)gscms.h -$(PSSRC)ifunc.h:$(GLSRC)gsdevice.h $(PSSRC)ifunc.h:$(GLSRC)gscspace.h +$(PSSRC)ifunc.h:$(GLSRC)gsdevice.h $(PSSRC)ifunc.h:$(GLSRC)gxarith.h +$(PSSRC)ifunc.h:$(GLSRC)gxhttile.h +$(PSSRC)ifunc.h:$(GLSRC)gsiparam.h $(PSSRC)ifunc.h:$(GLSRC)gsdsrc.h +$(PSSRC)ifunc.h:$(GLSRC)gxbitmap.h +$(PSSRC)ifunc.h:$(GLSRC)gsmatrix.h $(PSSRC)ifunc.h:$(GLSRC)gsrefct.h -$(PSSRC)ifunc.h:$(GLSRC)gsiparam.h -$(PSSRC)ifunc.h:$(GLSRC)gxhttile.h -$(PSSRC)ifunc.h:$(GLSRC)memento.h $(PSSRC)ifunc.h:$(GLSRC)gsparam.h -$(PSSRC)ifunc.h:$(GLSRC)gsmatrix.h -$(PSSRC)ifunc.h:$(GLSRC)gxbitmap.h +$(PSSRC)ifunc.h:$(GLSRC)gsccolor.h $(PSSRC)ifunc.h:$(GLSRC)gsstruct.h $(PSSRC)ifunc.h:$(GLSRC)gxsync.h -$(PSSRC)ifunc.h:$(GLSRC)gscsel.h $(PSSRC)ifunc.h:$(GLSRC)scommon.h +$(PSSRC)ifunc.h:$(GLSRC)memento.h +$(PSSRC)ifunc.h:$(GLSRC)gscsel.h $(PSSRC)ifunc.h:$(GLSRC)gsbitmap.h -$(PSSRC)ifunc.h:$(GLSRC)gsccolor.h $(PSSRC)ifunc.h:$(GLSRC)gsstype.h $(PSSRC)ifunc.h:$(GLSRC)gsmemory.h $(PSSRC)ifunc.h:$(GLSRC)gpsync.h $(PSSRC)ifunc.h:$(GLSRC)gslibctx.h +$(PSSRC)ifunc.h:$(GLSRC)gs_dll_call.h $(PSSRC)ifunc.h:$(GLSRC)gsalloc.h +$(PSSRC)ifunc.h:$(GLSRC)stdio_.h $(PSSRC)ifunc.h:$(GLSRC)gxcindex.h -$(PSSRC)ifunc.h:$(GLSRC)stdint_.h $(PSSRC)ifunc.h:$(GLSRC)gsgstate.h -$(PSSRC)ifunc.h:$(GLSRC)gs_dll_call.h -$(PSSRC)ifunc.h:$(GLSRC)stdio_.h -$(PSSRC)ifunc.h:$(GLSRC)gstypes.h +$(PSSRC)ifunc.h:$(GLSRC)stdint_.h +$(PSSRC)ifunc.h:$(GLSRC)gssprintf.h $(PSSRC)ifunc.h:$(GLSRC)std.h +$(PSSRC)ifunc.h:$(GLSRC)gstypes.h $(PSSRC)ifunc.h:$(GLSRC)stdpre.h $(PSSRC)ifunc.h:$(GLGEN)arch.h -$(PSSRC)ifunc.h:$(GLSRC)gssprintf.h $(PSSRC)ivmem2.h:$(PSSRC)iref.h $(PSSRC)ivmem2.h:$(GLSRC)gxalloc.h $(PSSRC)ivmem2.h:$(GLSRC)gxobj.h $(PSSRC)ivmem2.h:$(GLSRC)gsnamecl.h $(PSSRC)ivmem2.h:$(GLSRC)gxcspace.h -$(PSSRC)ivmem2.h:$(GLSRC)gxfrac.h $(PSSRC)ivmem2.h:$(GLSRC)gsdcolor.h +$(PSSRC)ivmem2.h:$(GLSRC)gxfrac.h $(PSSRC)ivmem2.h:$(GLSRC)gscms.h -$(PSSRC)ivmem2.h:$(GLSRC)gsdevice.h $(PSSRC)ivmem2.h:$(GLSRC)gscspace.h +$(PSSRC)ivmem2.h:$(GLSRC)gsdevice.h $(PSSRC)ivmem2.h:$(GLSRC)gxarith.h -$(PSSRC)ivmem2.h:$(GLSRC)gsrefct.h -$(PSSRC)ivmem2.h:$(GLSRC)gsiparam.h $(PSSRC)ivmem2.h:$(GLSRC)gxhttile.h -$(PSSRC)ivmem2.h:$(GLSRC)memento.h -$(PSSRC)ivmem2.h:$(GLSRC)gsparam.h -$(PSSRC)ivmem2.h:$(GLSRC)gsmatrix.h +$(PSSRC)ivmem2.h:$(GLSRC)gsiparam.h $(PSSRC)ivmem2.h:$(GLSRC)gxbitmap.h +$(PSSRC)ivmem2.h:$(GLSRC)gsmatrix.h +$(PSSRC)ivmem2.h:$(GLSRC)gsrefct.h +$(PSSRC)ivmem2.h:$(GLSRC)gsparam.h +$(PSSRC)ivmem2.h:$(GLSRC)gsccolor.h $(PSSRC)ivmem2.h:$(GLSRC)gsstruct.h $(PSSRC)ivmem2.h:$(GLSRC)gxsync.h -$(PSSRC)ivmem2.h:$(GLSRC)gscsel.h $(PSSRC)ivmem2.h:$(GLSRC)scommon.h +$(PSSRC)ivmem2.h:$(GLSRC)memento.h +$(PSSRC)ivmem2.h:$(GLSRC)gscsel.h $(PSSRC)ivmem2.h:$(GLSRC)gsbitmap.h -$(PSSRC)ivmem2.h:$(GLSRC)gsccolor.h $(PSSRC)ivmem2.h:$(GLSRC)gsstype.h $(PSSRC)ivmem2.h:$(GLSRC)gsmemory.h $(PSSRC)ivmem2.h:$(GLSRC)gpsync.h $(PSSRC)ivmem2.h:$(GLSRC)gslibctx.h +$(PSSRC)ivmem2.h:$(GLSRC)gs_dll_call.h $(PSSRC)ivmem2.h:$(GLSRC)gsalloc.h +$(PSSRC)ivmem2.h:$(GLSRC)stdio_.h $(PSSRC)ivmem2.h:$(GLSRC)gxcindex.h -$(PSSRC)ivmem2.h:$(GLSRC)stdint_.h $(PSSRC)ivmem2.h:$(GLSRC)gsgstate.h -$(PSSRC)ivmem2.h:$(GLSRC)gs_dll_call.h -$(PSSRC)ivmem2.h:$(GLSRC)stdio_.h -$(PSSRC)ivmem2.h:$(GLSRC)gstypes.h +$(PSSRC)ivmem2.h:$(GLSRC)stdint_.h +$(PSSRC)ivmem2.h:$(GLSRC)gssprintf.h $(PSSRC)ivmem2.h:$(GLSRC)std.h +$(PSSRC)ivmem2.h:$(GLSRC)gstypes.h $(PSSRC)ivmem2.h:$(GLSRC)stdpre.h $(PSSRC)ivmem2.h:$(GLGEN)arch.h -$(PSSRC)ivmem2.h:$(GLSRC)gssprintf.h $(PSSRC)icid.h:$(GLSRC)gxcid.h $(PSSRC)icid.h:$(PSSRC)iref.h $(PSSRC)icid.h:$(GLSRC)gxalloc.h $(PSSRC)icid.h:$(GLSRC)gxobj.h $(PSSRC)icid.h:$(GLSRC)gsnamecl.h $(PSSRC)icid.h:$(GLSRC)gxcspace.h -$(PSSRC)icid.h:$(GLSRC)gxfrac.h $(PSSRC)icid.h:$(GLSRC)gsdcolor.h +$(PSSRC)icid.h:$(GLSRC)gxfrac.h $(PSSRC)icid.h:$(GLSRC)gscms.h -$(PSSRC)icid.h:$(GLSRC)gsdevice.h $(PSSRC)icid.h:$(GLSRC)gscspace.h +$(PSSRC)icid.h:$(GLSRC)gsdevice.h $(PSSRC)icid.h:$(GLSRC)gxarith.h -$(PSSRC)icid.h:$(GLSRC)gsrefct.h -$(PSSRC)icid.h:$(GLSRC)gsiparam.h $(PSSRC)icid.h:$(GLSRC)gxhttile.h -$(PSSRC)icid.h:$(GLSRC)memento.h -$(PSSRC)icid.h:$(GLSRC)gsparam.h -$(PSSRC)icid.h:$(GLSRC)gsmatrix.h +$(PSSRC)icid.h:$(GLSRC)gsiparam.h $(PSSRC)icid.h:$(GLSRC)gxbitmap.h +$(PSSRC)icid.h:$(GLSRC)gsmatrix.h +$(PSSRC)icid.h:$(GLSRC)gsrefct.h +$(PSSRC)icid.h:$(GLSRC)gsparam.h +$(PSSRC)icid.h:$(GLSRC)gsccolor.h $(PSSRC)icid.h:$(GLSRC)gsstruct.h $(PSSRC)icid.h:$(GLSRC)gxsync.h -$(PSSRC)icid.h:$(GLSRC)gscsel.h $(PSSRC)icid.h:$(GLSRC)scommon.h +$(PSSRC)icid.h:$(GLSRC)memento.h +$(PSSRC)icid.h:$(GLSRC)gscsel.h $(PSSRC)icid.h:$(GLSRC)gsbitmap.h -$(PSSRC)icid.h:$(GLSRC)gsccolor.h $(PSSRC)icid.h:$(GLSRC)gsstype.h $(PSSRC)icid.h:$(GLSRC)gsmemory.h $(PSSRC)icid.h:$(GLSRC)gpsync.h $(PSSRC)icid.h:$(GLSRC)gslibctx.h +$(PSSRC)icid.h:$(GLSRC)gs_dll_call.h $(PSSRC)icid.h:$(GLSRC)gsalloc.h +$(PSSRC)icid.h:$(GLSRC)stdio_.h $(PSSRC)icid.h:$(GLSRC)gxcindex.h -$(PSSRC)icid.h:$(GLSRC)stdint_.h $(PSSRC)icid.h:$(GLSRC)gsgstate.h -$(PSSRC)icid.h:$(GLSRC)gs_dll_call.h -$(PSSRC)icid.h:$(GLSRC)stdio_.h -$(PSSRC)icid.h:$(GLSRC)gstypes.h +$(PSSRC)icid.h:$(GLSRC)stdint_.h +$(PSSRC)icid.h:$(GLSRC)gssprintf.h $(PSSRC)icid.h:$(GLSRC)std.h +$(PSSRC)icid.h:$(GLSRC)gstypes.h $(PSSRC)icid.h:$(GLSRC)stdpre.h $(PSSRC)icid.h:$(GLGEN)arch.h -$(PSSRC)icid.h:$(GLSRC)gssprintf.h $(PSSRC)ifcid.h:$(GLSRC)gxfcid.h $(PSSRC)ifcid.h:$(PSSRC)icid.h $(PSSRC)ifcid.h:$(GLSRC)gstype1.h @@ -6184,246 +6186,247 @@ $(PSSRC)ifcid.h:$(PSSRC)isdata.h $(PSSRC)ifcid.h:$(PSSRC)imemory.h $(PSSRC)ifcid.h:$(PSSRC)ivmspace.h $(PSSRC)ifcid.h:$(PSSRC)iref.h -$(PSSRC)ifcid.h:$(GLSRC)gxalloc.h $(PSSRC)ifcid.h:$(GLSRC)gsgc.h -$(PSSRC)ifcid.h:$(GLSRC)gxobj.h +$(PSSRC)ifcid.h:$(GLSRC)gxalloc.h $(PSSRC)ifcid.h:$(GLSRC)gstext.h +$(PSSRC)ifcid.h:$(GLSRC)gxobj.h $(PSSRC)ifcid.h:$(GLSRC)gsnamecl.h -$(PSSRC)ifcid.h:$(GLSRC)gxcspace.h $(PSSRC)ifcid.h:$(GLSRC)gxfcache.h +$(PSSRC)ifcid.h:$(GLSRC)gxcspace.h +$(PSSRC)ifcid.h:$(GLSRC)gsuid.h +$(PSSRC)ifcid.h:$(GLSRC)gsdcolor.h $(PSSRC)ifcid.h:$(GLSRC)gsfont.h -$(PSSRC)ifcid.h:$(GLSRC)gxpath.h -$(PSSRC)ifcid.h:$(GLSRC)gspenum.h +$(PSSRC)ifcid.h:$(GLSRC)gxftype.h $(PSSRC)ifcid.h:$(GLSRC)gxfrac.h -$(PSSRC)ifcid.h:$(GLSRC)gslparam.h -$(PSSRC)ifcid.h:$(GLSRC)gxbcache.h -$(PSSRC)ifcid.h:$(GLSRC)gsdcolor.h -$(PSSRC)ifcid.h:$(GLSRC)gsrect.h $(PSSRC)ifcid.h:$(GLSRC)gscms.h -$(PSSRC)ifcid.h:$(GLSRC)gxftype.h -$(PSSRC)ifcid.h:$(GLSRC)gsdevice.h $(PSSRC)ifcid.h:$(GLSRC)gscspace.h -$(PSSRC)ifcid.h:$(GLSRC)gsuid.h +$(PSSRC)ifcid.h:$(GLSRC)gxpath.h +$(PSSRC)ifcid.h:$(GLSRC)gxbcache.h +$(PSSRC)ifcid.h:$(GLSRC)gsdevice.h $(PSSRC)ifcid.h:$(GLSRC)gxarith.h +$(PSSRC)ifcid.h:$(GLSRC)gspenum.h +$(PSSRC)ifcid.h:$(GLSRC)gxhttile.h +$(PSSRC)ifcid.h:$(GLSRC)gsrect.h +$(PSSRC)ifcid.h:$(GLSRC)gslparam.h $(PSSRC)ifcid.h:$(GLSRC)gsxfont.h +$(PSSRC)ifcid.h:$(GLSRC)gsiparam.h +$(PSSRC)ifcid.h:$(GLSRC)gxbitmap.h +$(PSSRC)ifcid.h:$(GLSRC)gsmatrix.h +$(PSSRC)ifcid.h:$(GLSRC)gscpm.h $(PSSRC)ifcid.h:$(GLSRC)gxfixed.h $(PSSRC)ifcid.h:$(GLSRC)gsrefct.h -$(PSSRC)ifcid.h:$(GLSRC)gscpm.h -$(PSSRC)ifcid.h:$(GLSRC)gsiparam.h -$(PSSRC)ifcid.h:$(GLSRC)gxhttile.h -$(PSSRC)ifcid.h:$(GLSRC)memento.h $(PSSRC)ifcid.h:$(GLSRC)gsparam.h -$(PSSRC)ifcid.h:$(GLSRC)gsmatrix.h -$(PSSRC)ifcid.h:$(GLSRC)gxbitmap.h +$(PSSRC)ifcid.h:$(GLSRC)gsccolor.h $(PSSRC)ifcid.h:$(GLSRC)gsstruct.h $(PSSRC)ifcid.h:$(GLSRC)gxsync.h -$(PSSRC)ifcid.h:$(GLSRC)gscsel.h $(PSSRC)ifcid.h:$(GLSRC)scommon.h +$(PSSRC)ifcid.h:$(GLSRC)memento.h +$(PSSRC)ifcid.h:$(GLSRC)gscsel.h $(PSSRC)ifcid.h:$(GLSRC)gsbitmap.h -$(PSSRC)ifcid.h:$(GLSRC)gsccolor.h $(PSSRC)ifcid.h:$(GLSRC)gsstype.h $(PSSRC)ifcid.h:$(GLSRC)gsmemory.h $(PSSRC)ifcid.h:$(GLSRC)gpsync.h $(PSSRC)ifcid.h:$(GLSRC)gslibctx.h +$(PSSRC)ifcid.h:$(GLSRC)gs_dll_call.h $(PSSRC)ifcid.h:$(GLSRC)gsalloc.h +$(PSSRC)ifcid.h:$(GLSRC)stdio_.h $(PSSRC)ifcid.h:$(GLSRC)gxcindex.h -$(PSSRC)ifcid.h:$(GLSRC)stdint_.h $(PSSRC)ifcid.h:$(GLSRC)gsgstate.h +$(PSSRC)ifcid.h:$(GLSRC)stdint_.h +$(PSSRC)ifcid.h:$(GLSRC)gssprintf.h $(PSSRC)ifcid.h:$(GLSRC)gsccode.h -$(PSSRC)ifcid.h:$(GLSRC)gs_dll_call.h -$(PSSRC)ifcid.h:$(GLSRC)stdio_.h -$(PSSRC)ifcid.h:$(GLSRC)gstypes.h $(PSSRC)ifcid.h:$(GLSRC)std.h +$(PSSRC)ifcid.h:$(GLSRC)gstypes.h $(PSSRC)ifcid.h:$(GLSRC)stdpre.h $(PSSRC)ifcid.h:$(GLGEN)arch.h -$(PSSRC)ifcid.h:$(GLSRC)gssprintf.h $(PSSRC)icie.h:$(PSSRC)igstate.h $(PSSRC)icie.h:$(GLSRC)gsstate.h $(PSSRC)icie.h:$(GLSRC)gsovrc.h $(PSSRC)icie.h:$(GLSRC)gscolor.h -$(PSSRC)icie.h:$(GLSRC)gsline.h $(PSSRC)icie.h:$(GLSRC)gxcomp.h +$(PSSRC)icie.h:$(GLSRC)gsline.h $(PSSRC)icie.h:$(PSSRC)istruct.h $(PSSRC)icie.h:$(GLSRC)gxbitfmt.h $(PSSRC)icie.h:$(PSSRC)imemory.h $(PSSRC)icie.h:$(PSSRC)ivmspace.h $(PSSRC)icie.h:$(GLSRC)gsht.h $(PSSRC)icie.h:$(PSSRC)iref.h -$(PSSRC)icie.h:$(GLSRC)gxalloc.h $(PSSRC)icie.h:$(GLSRC)gsgc.h -$(PSSRC)icie.h:$(GLSRC)gxobj.h +$(PSSRC)icie.h:$(GLSRC)gxalloc.h $(PSSRC)icie.h:$(GLSRC)gscie.h -$(PSSRC)icie.h:$(GLSRC)gxstate.h -$(PSSRC)icie.h:$(GLSRC)gxctable.h +$(PSSRC)icie.h:$(GLSRC)gxobj.h $(PSSRC)icie.h:$(GLSRC)gsnamecl.h +$(PSSRC)icie.h:$(GLSRC)gxstate.h $(PSSRC)icie.h:$(GLSRC)gxcspace.h -$(PSSRC)icie.h:$(GLSRC)gxtmap.h -$(PSSRC)icie.h:$(GLSRC)gxfrac.h -$(PSSRC)icie.h:$(GLSRC)gslparam.h +$(PSSRC)icie.h:$(GLSRC)gxctable.h $(PSSRC)icie.h:$(GLSRC)gsdcolor.h +$(PSSRC)icie.h:$(GLSRC)gxfrac.h $(PSSRC)icie.h:$(GLSRC)gscms.h -$(PSSRC)icie.h:$(GLSRC)gsdevice.h $(PSSRC)icie.h:$(GLSRC)gscspace.h +$(PSSRC)icie.h:$(GLSRC)gsdevice.h $(PSSRC)icie.h:$(GLSRC)gxarith.h +$(PSSRC)icie.h:$(GLSRC)gxhttile.h +$(PSSRC)icie.h:$(GLSRC)gslparam.h +$(PSSRC)icie.h:$(GLSRC)gsiparam.h +$(PSSRC)icie.h:$(GLSRC)gxbitmap.h +$(PSSRC)icie.h:$(GLSRC)gsmatrix.h +$(PSSRC)icie.h:$(GLSRC)gscpm.h $(PSSRC)icie.h:$(GLSRC)gxfixed.h $(PSSRC)icie.h:$(GLSRC)gsrefct.h -$(PSSRC)icie.h:$(GLSRC)gscpm.h -$(PSSRC)icie.h:$(GLSRC)gsiparam.h -$(PSSRC)icie.h:$(GLSRC)gxhttile.h -$(PSSRC)icie.h:$(GLSRC)memento.h $(PSSRC)icie.h:$(GLSRC)gsparam.h -$(PSSRC)icie.h:$(GLSRC)gsmatrix.h -$(PSSRC)icie.h:$(GLSRC)gxbitmap.h +$(PSSRC)icie.h:$(GLSRC)gsccolor.h $(PSSRC)icie.h:$(GLSRC)gsstruct.h $(PSSRC)icie.h:$(GLSRC)gxsync.h -$(PSSRC)icie.h:$(GLSRC)gscsel.h $(PSSRC)icie.h:$(GLSRC)scommon.h +$(PSSRC)icie.h:$(GLSRC)memento.h +$(PSSRC)icie.h:$(GLSRC)gscsel.h $(PSSRC)icie.h:$(GLSRC)gsbitmap.h -$(PSSRC)icie.h:$(GLSRC)gsccolor.h $(PSSRC)icie.h:$(GLSRC)gsstype.h +$(PSSRC)icie.h:$(GLSRC)gxtmap.h $(PSSRC)icie.h:$(GLSRC)gsmemory.h $(PSSRC)icie.h:$(GLSRC)gpsync.h $(PSSRC)icie.h:$(GLSRC)gslibctx.h +$(PSSRC)icie.h:$(GLSRC)gs_dll_call.h $(PSSRC)icie.h:$(GLSRC)gsalloc.h +$(PSSRC)icie.h:$(GLSRC)stdio_.h $(PSSRC)icie.h:$(GLSRC)gscompt.h $(PSSRC)icie.h:$(GLSRC)gxcindex.h -$(PSSRC)icie.h:$(GLSRC)stdint_.h $(PSSRC)icie.h:$(GLSRC)gsgstate.h -$(PSSRC)icie.h:$(GLSRC)gs_dll_call.h -$(PSSRC)icie.h:$(GLSRC)stdio_.h -$(PSSRC)icie.h:$(GLSRC)gstypes.h +$(PSSRC)icie.h:$(GLSRC)stdint_.h +$(PSSRC)icie.h:$(GLSRC)gssprintf.h $(PSSRC)icie.h:$(GLSRC)std.h +$(PSSRC)icie.h:$(GLSRC)gstypes.h $(PSSRC)icie.h:$(GLSRC)stdpre.h $(PSSRC)icie.h:$(GLGEN)arch.h -$(PSSRC)icie.h:$(GLSRC)gssprintf.h $(PSSRC)ipcolor.h:$(PSSRC)iref.h $(PSSRC)ipcolor.h:$(GLSRC)gxalloc.h $(PSSRC)ipcolor.h:$(GLSRC)gxobj.h $(PSSRC)ipcolor.h:$(GLSRC)gsnamecl.h $(PSSRC)ipcolor.h:$(GLSRC)gxcspace.h -$(PSSRC)ipcolor.h:$(GLSRC)gxfrac.h $(PSSRC)ipcolor.h:$(GLSRC)gsdcolor.h +$(PSSRC)ipcolor.h:$(GLSRC)gxfrac.h $(PSSRC)ipcolor.h:$(GLSRC)gscms.h -$(PSSRC)ipcolor.h:$(GLSRC)gsdevice.h $(PSSRC)ipcolor.h:$(GLSRC)gscspace.h +$(PSSRC)ipcolor.h:$(GLSRC)gsdevice.h $(PSSRC)ipcolor.h:$(GLSRC)gxarith.h -$(PSSRC)ipcolor.h:$(GLSRC)gsrefct.h -$(PSSRC)ipcolor.h:$(GLSRC)gsiparam.h $(PSSRC)ipcolor.h:$(GLSRC)gxhttile.h -$(PSSRC)ipcolor.h:$(GLSRC)memento.h -$(PSSRC)ipcolor.h:$(GLSRC)gsparam.h -$(PSSRC)ipcolor.h:$(GLSRC)gsmatrix.h +$(PSSRC)ipcolor.h:$(GLSRC)gsiparam.h $(PSSRC)ipcolor.h:$(GLSRC)gxbitmap.h +$(PSSRC)ipcolor.h:$(GLSRC)gsmatrix.h +$(PSSRC)ipcolor.h:$(GLSRC)gsrefct.h +$(PSSRC)ipcolor.h:$(GLSRC)gsparam.h +$(PSSRC)ipcolor.h:$(GLSRC)gsccolor.h $(PSSRC)ipcolor.h:$(GLSRC)gsstruct.h $(PSSRC)ipcolor.h:$(GLSRC)gxsync.h -$(PSSRC)ipcolor.h:$(GLSRC)gscsel.h $(PSSRC)ipcolor.h:$(GLSRC)scommon.h +$(PSSRC)ipcolor.h:$(GLSRC)memento.h +$(PSSRC)ipcolor.h:$(GLSRC)gscsel.h $(PSSRC)ipcolor.h:$(GLSRC)gsbitmap.h -$(PSSRC)ipcolor.h:$(GLSRC)gsccolor.h $(PSSRC)ipcolor.h:$(GLSRC)gsstype.h $(PSSRC)ipcolor.h:$(GLSRC)gsmemory.h $(PSSRC)ipcolor.h:$(GLSRC)gpsync.h $(PSSRC)ipcolor.h:$(GLSRC)gslibctx.h +$(PSSRC)ipcolor.h:$(GLSRC)gs_dll_call.h $(PSSRC)ipcolor.h:$(GLSRC)gsalloc.h +$(PSSRC)ipcolor.h:$(GLSRC)stdio_.h $(PSSRC)ipcolor.h:$(GLSRC)gxcindex.h -$(PSSRC)ipcolor.h:$(GLSRC)stdint_.h $(PSSRC)ipcolor.h:$(GLSRC)gsgstate.h -$(PSSRC)ipcolor.h:$(GLSRC)gs_dll_call.h -$(PSSRC)ipcolor.h:$(GLSRC)stdio_.h -$(PSSRC)ipcolor.h:$(GLSRC)gstypes.h +$(PSSRC)ipcolor.h:$(GLSRC)stdint_.h +$(PSSRC)ipcolor.h:$(GLSRC)gssprintf.h $(PSSRC)ipcolor.h:$(GLSRC)std.h +$(PSSRC)ipcolor.h:$(GLSRC)gstypes.h $(PSSRC)ipcolor.h:$(GLSRC)stdpre.h $(PSSRC)ipcolor.h:$(GLGEN)arch.h -$(PSSRC)ipcolor.h:$(GLSRC)gssprintf.h $(GLSRC)gsform1.h:$(GLSRC)gxpath.h $(GLSRC)gsform1.h:$(GLSRC)gspenum.h -$(GLSRC)gsform1.h:$(GLSRC)gslparam.h $(GLSRC)gsform1.h:$(GLSRC)gsrect.h -$(GLSRC)gsform1.h:$(GLSRC)gxfixed.h -$(GLSRC)gsform1.h:$(GLSRC)gscpm.h +$(GLSRC)gsform1.h:$(GLSRC)gslparam.h $(GLSRC)gsform1.h:$(GLSRC)gsmatrix.h +$(GLSRC)gsform1.h:$(GLSRC)gscpm.h +$(GLSRC)gsform1.h:$(GLSRC)gxfixed.h $(GLSRC)gsform1.h:$(GLSRC)scommon.h $(GLSRC)gsform1.h:$(GLSRC)gsstype.h $(GLSRC)gsform1.h:$(GLSRC)gsmemory.h $(GLSRC)gsform1.h:$(GLSRC)gslibctx.h -$(GLSRC)gsform1.h:$(GLSRC)stdint_.h -$(GLSRC)gsform1.h:$(GLSRC)gsgstate.h $(GLSRC)gsform1.h:$(GLSRC)gs_dll_call.h $(GLSRC)gsform1.h:$(GLSRC)stdio_.h -$(GLSRC)gsform1.h:$(GLSRC)gstypes.h +$(GLSRC)gsform1.h:$(GLSRC)gsgstate.h +$(GLSRC)gsform1.h:$(GLSRC)stdint_.h +$(GLSRC)gsform1.h:$(GLSRC)gssprintf.h $(GLSRC)gsform1.h:$(GLSRC)std.h +$(GLSRC)gsform1.h:$(GLSRC)gstypes.h $(GLSRC)gsform1.h:$(GLSRC)stdpre.h $(GLSRC)gsform1.h:$(GLGEN)arch.h -$(GLSRC)gsform1.h:$(GLSRC)gssprintf.h $(DEVSRC)gdevdsp2.h:$(GLSRC)gdevdevn.h -$(DEVSRC)gdevdsp2.h:$(GLSRC)gxblend.h $(DEVSRC)gdevdsp2.h:$(GLSRC)gsequivc.h +$(DEVSRC)gdevdsp2.h:$(GLSRC)gxblend.h $(DEVSRC)gdevdsp2.h:$(GLSRC)gxdevcli.h $(DEVSRC)gdevdsp2.h:$(GLSRC)gxtext.h $(DEVSRC)gdevdsp2.h:$(GLSRC)gstext.h +$(DEVSRC)gdevdsp2.h:$(GLSRC)gsnamecl.h $(DEVSRC)gdevdsp2.h:$(GLSRC)gstparam.h -$(DEVSRC)gdevdsp2.h:$(GLSRC)gxcmap.h +$(DEVSRC)gdevdsp2.h:$(GLSRC)gxfcache.h +$(DEVSRC)gdevdsp2.h:$(GLSRC)gxcspace.h $(DEVSRC)gdevdsp2.h:$(GLSRC)gsropt.h $(DEVSRC)gdevdsp2.h:$(GLSRC)gsfunc.h -$(DEVSRC)gdevdsp2.h:$(GLSRC)gsnamecl.h $(DEVSRC)gdevdsp2.h:$(GLSRC)gxrplane.h -$(DEVSRC)gdevdsp2.h:$(GLSRC)gxcspace.h -$(DEVSRC)gdevdsp2.h:$(GLSRC)gxfcache.h +$(DEVSRC)gdevdsp2.h:$(GLSRC)gsuid.h +$(DEVSRC)gdevdsp2.h:$(GLSRC)gxcmap.h +$(DEVSRC)gdevdsp2.h:$(GLSRC)gsimage.h +$(DEVSRC)gdevdsp2.h:$(GLSRC)gsdcolor.h +$(DEVSRC)gdevdsp2.h:$(GLSRC)gxdda.h +$(DEVSRC)gdevdsp2.h:$(GLSRC)gxcvalue.h $(DEVSRC)gdevdsp2.h:$(GLSRC)gsfont.h $(DEVSRC)gdevdsp2.h:$(GLSRC)gxfmap.h -$(DEVSRC)gdevdsp2.h:$(GLSRC)gxcvalue.h -$(DEVSRC)gdevdsp2.h:$(GLSRC)gxpath.h -$(DEVSRC)gdevdsp2.h:$(GLSRC)gspenum.h -$(DEVSRC)gdevdsp2.h:$(GLSRC)gxtmap.h +$(DEVSRC)gdevdsp2.h:$(GLSRC)gxftype.h $(DEVSRC)gdevdsp2.h:$(DEVSRC)gdevdsp.h -$(DEVSRC)gdevdsp2.h:$(GLSRC)gsimage.h $(DEVSRC)gdevdsp2.h:$(GLSRC)gxfrac.h -$(DEVSRC)gdevdsp2.h:$(GLSRC)gxdda.h -$(DEVSRC)gdevdsp2.h:$(GLSRC)gslparam.h -$(DEVSRC)gdevdsp2.h:$(GLSRC)gxbcache.h -$(DEVSRC)gdevdsp2.h:$(GLSRC)gsdcolor.h -$(DEVSRC)gdevdsp2.h:$(GLSRC)gsrect.h $(DEVSRC)gdevdsp2.h:$(GLSRC)gscms.h -$(DEVSRC)gdevdsp2.h:$(GLSRC)gxftype.h -$(DEVSRC)gdevdsp2.h:$(GLSRC)gsdevice.h $(DEVSRC)gdevdsp2.h:$(GLSRC)gscspace.h -$(DEVSRC)gdevdsp2.h:$(GLSRC)gsuid.h +$(DEVSRC)gdevdsp2.h:$(GLSRC)gxpath.h +$(DEVSRC)gdevdsp2.h:$(GLSRC)gxbcache.h +$(DEVSRC)gdevdsp2.h:$(GLSRC)gsdevice.h $(DEVSRC)gdevdsp2.h:$(GLSRC)gxarith.h -$(DEVSRC)gdevdsp2.h:$(GLSRC)gsdsrc.h +$(DEVSRC)gdevdsp2.h:$(GLSRC)gspenum.h +$(DEVSRC)gdevdsp2.h:$(GLSRC)gxhttile.h +$(DEVSRC)gdevdsp2.h:$(GLSRC)gsrect.h +$(DEVSRC)gdevdsp2.h:$(GLSRC)gslparam.h $(DEVSRC)gdevdsp2.h:$(GLSRC)gsxfont.h +$(DEVSRC)gdevdsp2.h:$(GLSRC)gsiparam.h +$(DEVSRC)gdevdsp2.h:$(GLSRC)gsdsrc.h +$(DEVSRC)gdevdsp2.h:$(GLSRC)gxbitmap.h +$(DEVSRC)gdevdsp2.h:$(GLSRC)gsmatrix.h +$(DEVSRC)gdevdsp2.h:$(GLSRC)gscpm.h $(DEVSRC)gdevdsp2.h:$(GLSRC)gxfixed.h $(DEVSRC)gdevdsp2.h:$(GLSRC)gsrefct.h -$(DEVSRC)gdevdsp2.h:$(GLSRC)gscpm.h -$(DEVSRC)gdevdsp2.h:$(GLSRC)gsiparam.h -$(DEVSRC)gdevdsp2.h:$(GLSRC)gxhttile.h -$(DEVSRC)gdevdsp2.h:$(GLSRC)gp.h -$(DEVSRC)gdevdsp2.h:$(GLSRC)memento.h $(DEVSRC)gdevdsp2.h:$(GLSRC)gsparam.h -$(DEVSRC)gdevdsp2.h:$(GLSRC)gsmatrix.h -$(DEVSRC)gdevdsp2.h:$(GLSRC)gxbitmap.h -$(DEVSRC)gdevdsp2.h:$(GLSRC)srdline.h +$(DEVSRC)gdevdsp2.h:$(GLSRC)gp.h +$(DEVSRC)gdevdsp2.h:$(GLSRC)gsccolor.h $(DEVSRC)gdevdsp2.h:$(GLSRC)gsstruct.h $(DEVSRC)gdevdsp2.h:$(GLSRC)gxsync.h -$(DEVSRC)gdevdsp2.h:$(GLSRC)gscsel.h +$(DEVSRC)gdevdsp2.h:$(GLSRC)srdline.h $(DEVSRC)gdevdsp2.h:$(GLSRC)scommon.h +$(DEVSRC)gdevdsp2.h:$(GLSRC)memento.h +$(DEVSRC)gdevdsp2.h:$(GLSRC)gscsel.h $(DEVSRC)gdevdsp2.h:$(GLSRC)gsbitmap.h -$(DEVSRC)gdevdsp2.h:$(GLSRC)gsccolor.h $(DEVSRC)gdevdsp2.h:$(GLSRC)gsstype.h +$(DEVSRC)gdevdsp2.h:$(GLSRC)stat_.h +$(DEVSRC)gdevdsp2.h:$(GLSRC)gxtmap.h $(DEVSRC)gdevdsp2.h:$(GLSRC)gsmemory.h $(DEVSRC)gdevdsp2.h:$(GLSRC)gpsync.h -$(DEVSRC)gdevdsp2.h:$(GLSRC)gpgetenv.h $(DEVSRC)gdevdsp2.h:$(GLSRC)memory_.h +$(DEVSRC)gdevdsp2.h:$(GLSRC)gpgetenv.h $(DEVSRC)gdevdsp2.h:$(GLSRC)gslibctx.h $(DEVSRC)gdevdsp2.h:$(GLSRC)gscdefs.h +$(DEVSRC)gdevdsp2.h:$(GLSRC)gs_dll_call.h +$(DEVSRC)gdevdsp2.h:$(GLSRC)stdio_.h $(DEVSRC)gdevdsp2.h:$(GLSRC)gscompt.h $(DEVSRC)gdevdsp2.h:$(GLSRC)gxcindex.h -$(DEVSRC)gdevdsp2.h:$(GLSRC)stdint_.h $(DEVSRC)gdevdsp2.h:$(GLSRC)gsgstate.h +$(DEVSRC)gdevdsp2.h:$(GLSRC)stdint_.h +$(DEVSRC)gdevdsp2.h:$(GLSRC)gssprintf.h $(DEVSRC)gdevdsp2.h:$(GLSRC)gsccode.h -$(DEVSRC)gdevdsp2.h:$(GLSRC)gs_dll_call.h -$(DEVSRC)gdevdsp2.h:$(GLSRC)stdio_.h -$(DEVSRC)gdevdsp2.h:$(GLSRC)gstypes.h $(DEVSRC)gdevdsp2.h:$(GLSRC)std.h +$(DEVSRC)gdevdsp2.h:$(GLSRC)gstypes.h $(DEVSRC)gdevdsp2.h:$(GLSRC)stdpre.h $(DEVSRC)gdevdsp2.h:$(GLGEN)arch.h -$(DEVSRC)gdevdsp2.h:$(GLSRC)gssprintf.h diff --git a/psi/isave.c b/psi/isave.c index b2afd4f6..b1d0c7fc 100644 --- a/psi/isave.c +++ b/psi/isave.c @@ -881,7 +881,9 @@ alloc_restore_all(i_ctx_t *i_ctx_p) /* Restore to a state outside any saves. */ while (lmem->save_level != 0) { vm_save_t *vmsave = alloc_save_client_data(alloc_save_current(idmemory)); - gs_grestoreall_for_restore(i_ctx_p->pgs, vmsave->gsave); + if (vmsave->gsave) { + gs_grestoreall_for_restore(i_ctx_p->pgs, vmsave->gsave); + } vmsave->gsave = 0; code = alloc_restore_step_in(idmemory, lmem->saved); diff --git a/psi/msvc.mak b/psi/msvc.mak index 7b097f97..c5c3b464 100644 --- a/psi/msvc.mak +++ b/psi/msvc.mak @@ -97,6 +97,9 @@ DEFAULT_OBJ_DIR=$(DEFAULT_OBJ_DIR)rt !ifdef WIN64 DEFAULT_OBJ_DIR=$(DEFAULT_OBJ_DIR)64 !endif +!ifdef XP +DEFAULT_OBJ_DIR=$(DEFAULT_OBJ_DIR)xp +!endif !ifndef AUXDIR AUXDIR=$(DEFAULT_OBJ_DIR)\aux_ @@ -118,6 +121,9 @@ BINDIR=.\bin !endif !endif !endif +!ifdef XP +BINDIR=$(BINDIR)xp +!endif !endif !ifndef GLSRCDIR GLSRCDIR=.\base @@ -232,6 +238,26 @@ GPDLGENDIR=$(GLGENDIR) GPDLOBJDIR=$(GLOBJDIR) !endif +!ifndef URFSRCDIR +URFSRCDIR=.\urf +!endif +!ifndef URFGENDIR +URFGENDIR=$(GLGENDIR) +!endif +!ifndef URFOBJDIR +URFOBJDIR=$(GLOBJDIR) +!endif + +!ifndef IMGSRCDIR +IMGSRCDIR=.\gpdl\img +!endif +!ifndef IMGGENDIR +IMGGENDIR=$(GLGENDIR) +!endif +!ifndef IMGOBJDIR +IMGOBJDIR=$(GLOBJDIR) +!endif + CONTRIBDIR=.\contrib # Can we build PCL and XPS @@ -271,7 +297,7 @@ XPS_TARGET=gxps GPDL_TARGET=gpdl !endif -PCL_XPS_TARGETS=$(PCL_TARGET) $(XPS_TARGET) +PCL_XPS_PDL_TARGETS=$(PCL_TARGET) $(XPS_TARGET) $(GPDL_TARGET) # Define the root directory for Ghostscript installation. @@ -547,6 +573,28 @@ WITH_CUPS=0 WITH_CUPS=0 !endif +# Should we build URF... +!ifdef WITH_URF +!if "$(WITH_URF)"!="0" +WITH_URF=1 +!else +WITH_URF=0 +!endif +!else +!if exist ("$(URFSRCDIR)") +WITH_URF=1 +!else +WITH_URF=0 +!endif +!endif +!if "$(WITH_URF)"=="1" +ENABLE_URF=$(D_)URF_INCLUDED$(_D) +GPDL_URF_TOP_OBJ=$(GPDLOBJ)/$(GPDL_URF_TOP_OBJ_FILE) +URF_INCLUDE=$(I_)$(URFSRCDIR)$(_I) +URF_DEV=$(GLD)urfd.dev +SURFX_H=$(URFSRCDIR)$(D)surfx.h +!endif + # Should we build using CAL.... CALSRCDIR=cal !ifdef WITH_CAL @@ -617,7 +665,8 @@ TIFFSRCDIR=tiff$(D) TIFFCONFDIR=$(TIFFSRCDIR) TIFFCONFIG_SUFFIX=.vc TIFFPLATFORM=win32 -TIFFCFLAGS="-DJPEG_LIB_MK1_OR_12BIT=0" +TIFF_CFLAGS=-DJPEG_SUPPORT -DOJPEG_SUPPORT -DJPEG_LIB_MK1_OR_12BIT=0 +ENABLE_TIFF=$(D_)TIFF_INCLUDED$(_D) !endif # Define the directory where the zlib sources are stored. @@ -750,13 +799,22 @@ XCFLAGS= !endif !ifndef CFLAGS +!if !defined(DEBUG) || "$(DEBUG)"=="0" +CFLAGS=/DNDEBUG +!else CFLAGS= !endif +!endif !ifdef DEVSTUDIO CFLAGS=$(CFLAGS) /FC !endif +!ifdef XP +CFLAGS=$(CFLAGS) /D_USING_V110_SDK71_ +SUBSUBSYS=,"5.01" +!endif + !ifdef CLUSTER CFLAGS=$(CFLAGS) -DCLUSTER !endif @@ -830,6 +888,7 @@ SBRFLAGS=/FR$(SBRDIR)\$(NUL) MSVC_VERSION=5 !endif !if "$(_NMAKE_VER)" == "6.00.8168.0" +# VC 6 MSVC_VERSION=6 !endif !if "$(_NMAKE_VER)" == "7.00.9466" @@ -843,50 +902,82 @@ MSVC_VERSION=7 MSVC_MINOR_VERSION=1 !endif !if "$(_NMAKE_VER)" == "8.00.40607.16" +# VS2005 MSVC_VERSION=8 !endif !if "$(_NMAKE_VER)" == "8.00.50727.42" +# VS2005 MSVC_VERSION=8 !endif !if "$(_NMAKE_VER)" == "8.00.50727.762" +# VS2005 MSVC_VERSION=8 !endif !if "$(_NMAKE_VER)" == "9.00.21022.08" +# VS2008 MSVC_VERSION=9 !endif !if "$(_NMAKE_VER)" == "9.00.30729.01" +# VS2008 MSVC_VERSION=9 !endif !if "$(_NMAKE_VER)" == "10.00.30319.01" +# VS2010 MSVC_VERSION=10 !endif !if "$(_NMAKE_VER)" == "11.00.50522.1" +# VS2012 MSVC_VERSION=11 !endif !if "$(_NMAKE_VER)" == "11.00.50727.1" +# VS2012 MSVC_VERSION=11 !endif !if "$(_NMAKE_VER)" == "11.00.60315.1" +# VS2012 MSVC_VERSION=11 !endif !if "$(_NMAKE_VER)" == "11.00.60610.1" +# VS2012 MSVC_VERSION=11 !endif !if "$(_NMAKE_VER)" == "12.00.21005.1" +# VS 2013 MSVC_VERSION=12 !endif !if "$(_NMAKE_VER)" == "14.00.23506.0" +# VS2015 MSVC_VERSION=14 !endif -!if "$(_NMAKE_VER)" == "14.14.26433.0" +!if "$(_NMAKE_VER)" == "14.00.24210.0" +# VS2015 MSVC_VERSION=14 !endif -!if "$(_NMAKE_VER)" == "14.16.27026.1" -MSVC_VERSION=14 +!if "$(_NMAKE_VER)" == "14.16.27034.0" +# VS2017 or VS2019 (Toolset v141) +MSVC_VERSION=15 +MS_TOOLSET_VERSION=14.16.27034 +!endif +!if "$(_NMAKE_VER)" == "14.24.28314.0" +# VS2019 (Toolset v142) +MSVC_VERSION=16 +MS_TOOLSET_VERSION=14.24.28314 +!endif +!if "$(_NMAKE_VER)" == "14.24.28315.0" +# VS2019 (Toolset v142 - update) +MSVC_VERSION=16 +MS_TOOLSET_VERSION=14.24.28315 +!endif +!if "$(_NMAKE_VER)" == "14.24.28316.0" +# VS2019 (Toolset v142 - update) +MSVC_VERSION=16 +MS_TOOLSET_VERSION=14.24.28316 !endif !endif !ifndef MSVC_VERSION +!MESSAGE Could not determine MSVC_VERSION! Guessing at an ancient one. +!MESSAGE Unknown nmake version: $(_NMAKE_VER) MSVC_VERSION=6 !endif !ifndef MSVC_MINOR_VERSION @@ -1174,6 +1265,59 @@ LINKLIBPATH=/LIBPATH:"$(COMPBASE)\lib\amd64" /LIBPATH:"$(COMPBASE)\PlatformSDK\L ! endif !endif +!if $(MSVC_VERSION) == 15 +! ifndef DEVSTUDIO +DEVSTUDIO=C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Tools\MSVC\$(MS_TOOLSET_VERSION) +! endif +! if "$(DEVSTUDIO)"=="" +COMPBASE= +SHAREDBASE= +! else +! if $(BUILD_SYSTEM) == 64 +DEVSTUDIO_HOST=Hostx64 +! else +DEVSTUDIO_HOST=Hostx86 +! endif +! ifdef WIN64 +DEVSTUDIO_TARGET=x64 +! else +DEVSTUDIO_TARGET=x86 +! endif +COMPDIR=$(DEVSTUDIO)\bin\$(DEVSTUDIO_HOST)\$(DEVSTUDIO_TARGET) +RCDIR= +LINKLIBPATH=/LIBPATH:"$(DEVSTUDIO)\lib\$(DEVSTUDIO_TARGET)" +! endif +!endif + +!if $(MSVC_VERSION) == 16 +! ifndef DEVSTUDIO +! if exist("C:\Program Files (x86)\Microsoft Visual Studio\2019\Professional") +DEVSTUDIO_VARIANT="Professional" +! else +DEVSTUDIO_VARIANT="Community" +! endif +DEVSTUDIO=C:\Program Files (x86)\Microsoft Visual Studio\2019\$(DEVSTUDIO_VARIANT)\VC\Tools\MSVC\$(MS_TOOLSET_VERSION) +! endif +! if "$(DEVSTUDIO)"=="" +COMPBASE= +SHAREDBASE= +! else +! if $(BUILD_SYSTEM) == 64 +DEVSTUDIO_HOST=Hostx64 +! else +DEVSTUDIO_HOST=Hostx86 +! endif +! ifdef WIN64 +DEVSTUDIO_TARGET=x64 +! else +DEVSTUDIO_TARGET=x86 +! endif +COMPDIR=$(DEVSTUDIO)\bin\$(DEVSTUDIO_HOST)\$(DEVSTUDIO_TARGET) +RCDIR= +LINKLIBPATH=/LIBPATH:"$(DEVSTUDIO)\lib\$(DEVSTUDIO_TARGET)" +! endif +!endif + !if "$(ARM)"=="1" VCINSTDIR=$(VS110COMNTOOLS)..\..\VC\ @@ -1424,7 +1568,7 @@ FEATURE_DEVS=$(GLD)pipe.dev $(GLD)gsnogc.dev $(GLD)htxlib.dev $(GLD)psl3lib.dev $(GLD)seprlib.dev $(GLD)translib.dev $(GLD)cidlib.dev $(GLD)psf0lib.dev $(GLD)psf1lib.dev\ $(GLD)psf2lib.dev $(GLD)lzwd.dev $(GLD)sicclib.dev $(GLD)mshandle.dev $(GLD)mspoll.dev \ $(GLD)ramfs.dev $(GLD)sjpx.dev $(GLD)sjbig2.dev \ - $(GLD)pwgd.dev $(GLD)siscale.dev + $(GLD)pwgd.dev $(GLD)siscale.dev $(URF_DEV) !ifndef METRO @@ -1487,12 +1631,15 @@ DEVICE_DEVS16=$(DD)bbox.dev $(DD)plib.dev $(DD)plibg.dev $(DD)plibm.dev $(DD)pli !if "$(WITH_CUPS)" == "1" DEVICE_DEVS16=$(DEVICE_DEVS16) $(DD)cups.dev !endif +!if "$(WITH_URF)" == "1" +DEVICE_DEVS16=$(DEVICE_DEVS16) $(DD)urfgray.dev $(DD)urfrgb.dev $(DD)urfcmyk.dev +!endif # Overflow for DEVS3,4,5,6,9 DEVICE_DEVS17=$(DD)ljet3.dev $(DD)ljet3d.dev $(DD)ljet4.dev $(DD)ljet4d.dev DEVICE_DEVS18=$(DD)pj.dev $(DD)pjxl.dev $(DD)pjxl300.dev $(DD)jetp3852.dev $(DD)r4081.dev DEVICE_DEVS19=$(DD)lbp8.dev $(DD)m8510.dev $(DD)necp6.dev $(DD)bjc600.dev $(DD)bjc800.dev DEVICE_DEVS20=$(DD)pnm.dev $(DD)pnmraw.dev $(DD)ppm.dev $(DD)ppmraw.dev $(DD)pamcmyk32.dev $(DD)pamcmyk4.dev $(DD)pnmcmyk.dev $(DD)pam.dev -DEVICE_DEVS21=$(DD)spotcmyk.dev $(DD)devicen.dev $(DD)bmpsep1.dev $(DD)bmpsep8.dev $(DD)bmp16m.dev $(DD)bmp32b.dev $(DD)psdcmyk.dev $(DD)psdrgb.dev $(DD)gprf.dev $(DD)psdcmyk16.dev $(DD)psdrgb16.dev +DEVICE_DEVS21=$(DD)spotcmyk.dev $(DD)devicen.dev $(DD)bmpsep1.dev $(DD)bmpsep8.dev $(DD)bmp16m.dev $(DD)bmp32b.dev $(DD)psdcmyk.dev $(DD)psdrgb.dev $(DD)psdcmyk16.dev $(DD)psdrgb16.dev !endif CONTRIB_DEVS=$(DD)pcl3.dev $(DD)hpdjplus.dev $(DD)hpdjportable.dev $(DD)hpdj310.dev $(DD)hpdj320.dev $(DD)hpdj340.dev $(DD)hpdj400.dev $(DD)hpdj500.dev $(DD)hpdj500c.dev $(DD)hpdj510.dev $(DD)hpdj520.dev $(DD)hpdj540.dev $(DD)hpdj550c.dev $(DD)hpdj560c.dev $(DD)hpdj600.dev $(DD)hpdj660c.dev $(DD)hpdj670c.dev $(DD)hpdj680c.dev $(DD)hpdj690c.dev $(DD)hpdj850c.dev $(DD)hpdj855c.dev $(DD)hpdj870c.dev $(DD)hpdj890c.dev $(DD)hpdj1120c.dev $(DD)cdj670.dev $(DD)cdj850.dev $(DD)cdj880.dev $(DD)cdj890.dev $(DD)cdj970.dev $(DD)cdj1600.dev $(DD)cdnj500.dev $(DD)chp2200.dev $(DD)lips3.dev $(DD)lxm3200.dev $(DD)lex2050.dev $(DD)lxm3200.dev $(DD)lex5700.dev $(DD)lex7000.dev $(DD)oki4w.dev $(DD)gdi.dev $(DD)samsunggdi.dev $(DD)dl2100.dev $(DD)la50.dev $(DD)la70.dev $(DD)la75.dev $(DD)la75plus.dev $(DD)ln03.dev $(DD)xes.dev $(DD)md2k.dev $(DD)md5k.dev $(DD)lips4.dev $(DD)bj10v.dev $(DD)bj10vh.dev $(DD)md50Mono.dev $(DD)md50Eco.dev $(DD)md1xMono.dev $(DD)lp2000.dev $(DD)escpage.dev $(DD)npdl.dev $(DD)rpdl.dev $(DD)fmpr.dev $(DD)fmlbp.dev $(DD)jj100.dev $(DD)lbp310.dev $(DD)lbp320.dev $(DD)mj700v2c.dev $(DD)mj500c.dev $(DD)mj6000c.dev $(DD)mj8000c.dev $(DD)pr201.dev $(DD)pr150.dev $(DD)pr1000.dev $(DD)pr1000_4.dev $(DD)lips2p.dev $(DD)bjc880j.dev $(DD)bjcmono.dev $(DD)bjcgray.dev $(DD)bjccmyk.dev $(DD)bjccolor.dev @@ -1509,7 +1656,7 @@ BITSTREAM_CFLAGS= # Define the name of the makefile -- used in dependencies. -MAKEFILE=$(PSSRCDIR)\msvc32.mak +MAKEFILE=$(PSSRCDIR)\msvc.mak TOP_MAKEFILES=$(MAKEFILE) $(GLSRCDIR)\msvccmd.mak $(GLSRCDIR)\msvctail.mak $(GLSRCDIR)\winlib.mak $(PSSRCDIR)\winint.mak # Define the files to be removed by `make clean'. @@ -1661,7 +1808,7 @@ $(GS_XE): $(GSDLL_DLL) !else $(GS_XE): $(GSDLL_DLL) $(DWOBJ) $(GSCONSOLE_XE) $(GLOBJ)gp_wutf8.$(OBJ) $(TOP_MAKEFILES) - echo /SUBSYSTEM:WINDOWS > $(PSGEN)gswin.rsp + echo /SUBSYSTEM:WINDOWS$(SUBSUBSYS) > $(PSGEN)gswin.rsp !if "$(PROFILE)"=="1" echo /Profile >> $(PSGEN)gswin.rsp !endif @@ -1676,7 +1823,7 @@ $(GS_XE): $(GSDLL_DLL) $(DWOBJ) $(GSCONSOLE_XE) $(GLOBJ)gp_wutf8.$(OBJ) $(TOP_M # The console mode small EXE loader $(GSCONSOLE_XE): $(OBJC) $(GS_OBJ).res $(PSSRCDIR)\dw64c.def $(PSSRCDIR)\dw32c.def $(GLOBJ)gp_wutf8.$(OBJ) $(TOP_MAKEFILES) - echo /SUBSYSTEM:CONSOLE > $(PSGEN)gswin.rsp + echo /SUBSYSTEM:CONSOLE$(SUBSUBSYS) > $(PSGEN)gswin.rsp !if "$(PROFILE)"=="1" echo /Profile >> $(PSGEN)gswin.rsp !endif @@ -1713,7 +1860,7 @@ $(GPCL6DLL_DLL): $(ECHOGS_XE) $(GSDLL_OBJ).res $(LIBCTR) $(LIB_ALL) $(PCL_DEVS_A del $(PCLGEN)gpclwin.rsp $(GPCL_XE): $(GPCL6DLL_DLL) $(DWMAINOBJS) $(GS_OBJ).res $(TOP_MAKEFILES) - echo /SUBSYSTEM:CONSOLE > $(PCLGEN)gpclwin.rsp + echo /SUBSYSTEM:CONSOLE$(SUBSUBSYS) > $(PCLGEN)gpclwin.rsp !if "$(PROFILE)"=="1" echo /Profile >> $(PCLGEN)gpclwin.rsp !endif @@ -1741,7 +1888,7 @@ $(GXPSDLL_DLL): $(ECHOGS_XE) $(GSDLL_OBJ).res $(LIBCTR) $(LIB_ALL) $(XPS_DEVS_AL del $(PCLGEN)gxpswin.rsp $(GXPS_XE): $(GXPSDLL_DLL) $(DWMAINOBJS) $(GS_OBJ).res $(TOP_MAKEFILES) - echo /SUBSYSTEM:CONSOLE > $(XPSGEN)gxpswin.rsp + echo /SUBSYSTEM:CONSOLE$(SUBSUBSYS) > $(XPSGEN)gxpswin.rsp !if "$(PROFILE)"=="1" echo /Profile >> $(XPSGEN)gxpswin.rsp !endif @@ -1781,7 +1928,7 @@ $(GPDLDLL_DLL): $(ECHOGS_XE) $(GSDLL_OBJ).res $(LIBCTR) $(LIB_ALL) $(PCL_DEVS_AL del $(GPDLGEN)gpdlwin.rsp $(GPDL_XE): $(GPDLDLL_DLL) $(DWMAINOBJS) $(GS_OBJ).res $(TOP_MAKEFILES) - echo /SUBSYSTEM:CONSOLE > $(GPDLGEN)gpdlwin.rsp + echo /SUBSYSTEM:CONSOLE$(SUBSUBSYS) > $(GPDLGEN)gpdlwin.rsp !if "$(PROFILE)"=="1" echo /Profile >> $(XPSGEN)gpdlwin.rsp !endif @@ -1827,7 +1974,7 @@ $(GSCONSOLE_XE): $(ECHOGS_XE) $(gs_tr) $(GS_ALL) $(DEVS_ALL) $(GSDLL_OBJS) $(OBJ echo $(GLOBJ)dwimg.obj >> $(PSGEN)gswin.tr echo $(PSOBJ)dwmainc.obj >> $(PSGEN)gswin.tr echo $(PSOBJ)dwreg.obj >> $(PSGEN)gswin.tr - echo /SUBSYSTEM:CONSOLE > $(PSGEN)gswin.rsp + echo /SUBSYSTEM:CONSOLE$(SUBSUBSYS) > $(PSGEN)gswin.rsp !ifdef WIN64 echo /DEF:$(PSSRCDIR)\dw64c.def /OUT:$(GSCONSOLE_XE) >> $(PSGEN)gswin.rsp !else @@ -1845,7 +1992,7 @@ $(GPCL_XE): $(ECHOGS_XE) $(LIBCTR) $(LIB_ALL) $(WINMAINOBJS) $(PCL_DEVS_ALL) $(P copy $(pclld_tr) $(PCLGEN)gpclwin.tr echo $(WINMAINOBJS) $(MAIN_OBJ) $(TOP_OBJ) $(INT_ARCHIVE_SOME) $(XOBJS) >> $(PCLGEN)gpclwin.tr echo $(PCLOBJ)pclromfs$(COMPILE_INITS).$(OBJ) >> $(PCLGEN)gpclwin.tr - echo /SUBSYSTEM:CONSOLE > $(PCLGEN)pclwin.rsp + echo /SUBSYSTEM:CONSOLE$(SUBSUBSYS) > $(PCLGEN)pclwin.rsp echo /OUT:$(GPCL_XE) >> $(PCLGEN)pclwin.rsp $(LINK) $(LCT) @$(PCLGEN)pclwin.rsp @$(PCLGEN)gpclwin.tr $(LINKLIBPATH) @$(LIBCTR) @$(PCLGEN)pcllib.rsp del $(PCLGEN)pclwin.rsp @@ -1858,7 +2005,7 @@ $(GXPS_XE): $(ECHOGS_XE) $(LIBCTR) $(LIB_ALL) $(WINMAINOBJS) $(XPS_DEVS_ALL) $(X copy $(xpsld_tr) $(XPSGEN)gxpswin.tr echo $(WINMAINOBJS) $(MAIN_OBJ) $(XPS_TOP_OBJS) $(INT_ARCHIVE_SOME) $(XOBJS) >> $(XPSGEN)gxpswin.tr echo $(PCLOBJ)xpsromfs$(COMPILE_INITS).$(OBJ) >> $(XPSGEN)gxpswin.tr - echo /SUBSYSTEM:CONSOLE > $(XPSGEN)xpswin.rsp + echo /SUBSYSTEM:CONSOLE$(SUBSUBSYS) > $(XPSGEN)xpswin.rsp echo /OUT:$(GXPS_XE) >> $(XPSGEN)xpswin.rsp $(LINK) $(LCT) @$(XPSGEN)xpswin.rsp @$(XPSGEN)gxpswin.tr $(LINKLIBPATH) @$(LIBCTR) @$(XPSGEN)xpslib.rsp del $(XPSGEN)xpswin.rsp @@ -1872,7 +2019,7 @@ $(GPDL_XE): $(ECHOGS_XE) $(ld_tr) $(gpdl_tr) $(LIBCTR) $(LIB_ALL) $(WINMAINOBJS) copy $(gpdlld_tr) $(GPDLGEN)gpdlwin.tr echo $(WINMAINOBJS) $(MAIN_OBJ) $(GPDL_PSI_TOP_OBJS) $(PCL_PXL_TOP_OBJS) $(PSI_TOP_OBJ) $(XPS_TOP_OBJ) $(XOBJS) >> $(GPDLGEN)gpdlwin.tr echo $(PCLOBJ)pdlromfs$(COMPILE_INITS).$(OBJ) >> $(GPDLGEN)gpdlwin.tr - echo /SUBSYSTEM:CONSOLE > $(GPDLGEN)gpdlwin.rsp + echo /SUBSYSTEM:CONSOLE$(SUBSUBSYS) > $(GPDLGEN)gpdlwin.rsp echo /OUT:$(GPDL_XE) >> $(GPDLGEN)gpdlwin.rsp $(LINK) $(LCT) @$(GPDLGEN)gpdlwin.rsp @$(GPDLGEN)gpdlwin.tr $(LINKLIBPATH) @$(LIBCTR) @$(GPDLGEN)gpdllib.rsp del $(GPDLGEN)gpdlwin.rsp @@ -1888,28 +2035,36 @@ WINDEFS=WIN64= BUILD_SYSTEM="$(BUILD_SYSTEM)" PGMFILES="$(PGMFILES)" PGMFILESx86 WINDEFS=BUILD_SYSTEM="$(BUILD_SYSTEM)" PGMFILES="$(PGMFILES)" PGMFILESx86="$(PGMFILESx86)" !endif -DEBUGDEFS=DEBUG=1 TDEBUG=1 +RECURSIVEDEFS=$(WINDEFS) +!ifdef XP +RECURSIVEDEFS=XP=$(XP) $(RECURSIVEDEFS) +!endif +!ifdef DEVSTUDIO +RECURSIVEDEFS=DEVSTUDIO="$(DEVSTUDIO)" $(RECURSIVEDEFS) +!endif + +DEBUGDEFS=DEBUG=1 TDEBUG=1 $(RECURSIVEDEFS) debug: - nmake -f $(MAKEFILE) DEVSTUDIO="$(DEVSTUDIO)" FT_BRIDGE=$(FT_BRIDGE) $(DEBUGDEFS) $(WINDEFS) + nmake -f $(MAKEFILE) $(DEBUGDEFS) FT_BRIDGE=$(FT_BRIDGE) gsdebug: - nmake -f $(MAKEFILE) DEVSTUDIO="$(DEVSTUDIO)" FT_BRIDGE=$(FT_BRIDGE) $(DEBUGDEFS) $(WINDEFS) gs + nmake -f $(MAKEFILE) $(DEBUGDEFS) FT_BRIDGE=$(FT_BRIDGE) gs gpcl6debug: - nmake -f $(MAKEFILE) DEVSTUDIO="$(DEVSTUDIO)" FT_BRIDGE=$(FT_BRIDGE) $(DEBUGDEFS) $(WINDEFS) gpcl6 + nmake -f $(MAKEFILE) $(DEBUGDEFS) FT_BRIDGE=$(FT_BRIDGE) gpcl6 gxpsdebug: - nmake -f $(MAKEFILE) DEVSTUDIO="$(DEVSTUDIO)" FT_BRIDGE=$(FT_BRIDGE) $(DEBUGDEFS) $(WINDEFS) gxps + nmake -f $(MAKEFILE) $(DEBUGDEFS) FT_BRIDGE=$(FT_BRIDGE) gxps gpdldebug: - nmake -f $(MAKEFILE) DEVSTUDIO="$(DEVSTUDIO)" FT_BRIDGE=$(FT_BRIDGE) $(DEBUGDEFS) $(WINDEFS) gpdl + nmake -f $(MAKEFILE) $(DEBUGDEFS) FT_BRIDGE=$(FT_BRIDGE) gpdl debugclean: - nmake -f $(MAKEFILE) DEVSTUDIO="$(DEVSTUDIO)" FT_BRIDGE=$(FT_BRIDGE) $(DEBUGDEFS) $(WINDEFS) clean + nmake -f $(MAKEFILE) $(DEBUGDEFS) FT_BRIDGE=$(FT_BRIDGE) clean debugbsc: - nmake -f $(MAKEFILE) DEVSTUDIO="$(DEVSTUDIO)" FT_BRIDGE=$(FT_BRIDGE) $(DEBUGDEFS) $(WINDEFS) bsc + nmake -f $(MAKEFILE) $(DEBUGDEFS) FT_BRIDGE=$(FT_BRIDGE) bsc # --------------------- Memento targets --------------------- # # Simply set some definitions and call ourselves back # @@ -1917,52 +2072,52 @@ debugbsc: MEMENTODEFS=$(DEBUGDEFS) MEMENTO=1 memento-target: - nmake -f $(MAKEFILE) DEVSTUDIO="$(DEVSTUDIO)" FT_BRIDGE=$(FT_BRIDGE) $(MEMENTODEFS) $(WINDEFS) + nmake -f $(MAKEFILE) $(MEMENTODEFS) FT_BRIDGE=$(FT_BRIDGE) gsmemento: - nmake -f $(MAKEFILE) DEVSTUDIO="$(DEVSTUDIO)" FT_BRIDGE=$(FT_BRIDGE) $(MEMENTODEFS) $(WINDEFS) gs + nmake -f $(MAKEFILE) $(MEMENTODEFS) FT_BRIDGE=$(FT_BRIDGE) gs gpcl6memento: - nmake -f $(MAKEFILE) DEVSTUDIO="$(DEVSTUDIO)" FT_BRIDGE=$(FT_BRIDGE) $(MEMENTODEFS) $(WINDEFS) gpcl6 + nmake -f $(MAKEFILE) $(MEMENTODEFS) FT_BRIDGE=$(FT_BRIDGE) gpcl6 gxpsmemento: - nmake -f $(MAKEFILE) DEVSTUDIO="$(DEVSTUDIO)" FT_BRIDGE=$(FT_BRIDGE) $(MEMENTODEFS) $(WINDEFS) gxps + nmake -f $(MAKEFILE) $(MEMENTODEFS) FT_BRIDGE=$(FT_BRIDGE) gxps gpdlmemento: - nmake -f $(MAKEFILE) DEVSTUDIO="$(DEVSTUDIO)" FT_BRIDGE=$(FT_BRIDGE) $(MEMENTODEFS) $(WINDEFS) gpdl + nmake -f $(MAKEFILE) $(MEMENTODEFS) FT_BRIDGE=$(FT_BRIDGE) gpdl mementoclean: - nmake -f $(MAKEFILE) DEVSTUDIO="$(DEVSTUDIO)" FT_BRIDGE=$(FT_BRIDGE) $(MEMENTODEFS) $(WINDEFS) clean + nmake -f $(MAKEFILE) $(MEMENTODEFS) FT_BRIDGE=$(FT_BRIDGE) clean mementobsc: - nmake -f $(MAKEFILE) DEVSTUDIO="$(DEVSTUDIO)" FT_BRIDGE=$(FT_BRIDGE) $(MEMENTODEFS) $(WINDEFS) bsc + nmake -f $(MAKEFILE) $(MEMENTODEFS) FT_BRIDGE=$(FT_BRIDGE) bsc # --------------------- Profile targets --------------------- # # Simply set some definitions and call ourselves back # -PROFILEDEFS=PROFILE=1 +PROFILEDEFS=$(RECURSIVEDEFS) PROFILE=1 profile: profile-target: - nmake -f $(MAKEFILE) DEVSTUDIO="$(DEVSTUDIO)" FT_BRIDGE=$(FT_BRIDGE) $(PROFILEDEFS) $(WINDEFS) + nmake -f $(MAKEFILE) $(PROFILEDEFS) FT_BRIDGE=$(FT_BRIDGE) gsprofile: - nmake -f $(MAKEFILE) DEVSTUDIO="$(DEVSTUDIO)" FT_BRIDGE=$(FT_BRIDGE) $(PROFILEDEFS) $(WINDEFS) gs + nmake -f $(MAKEFILE) $(PROFILEDEFS) FT_BRIDGE=$(FT_BRIDGE) gs gpcl6profile: - nmake -f $(MAKEFILE) DEVSTUDIO="$(DEVSTUDIO)" FT_BRIDGE=$(FT_BRIDGE) $(PROFILEDEFS) $(WINDEFS) gpcl6 + nmake -f $(MAKEFILE) $(PROFILEDEFS) FT_BRIDGE=$(FT_BRIDGE) gpcl6 gxpsprofile: - nmake -f $(MAKEFILE) DEVSTUDIO="$(DEVSTUDIO)" FT_BRIDGE=$(FT_BRIDGE) $(PROFILEDEFS) $(WINDEFS) gxps + nmake -f $(MAKEFILE) $(PROFILEDEFS) FT_BRIDGE=$(FT_BRIDGE) gxps gpdlprofile: - nmake -f $(MAKEFILE) DEVSTUDIO="$(DEVSTUDIO)" FT_BRIDGE=$(FT_BRIDGE) $(PROFILEDEFS) $(WINDEFS) gpdl + nmake -f $(MAKEFILE) $(PROFILEDEFS) FT_BRIDGE=$(FT_BRIDGE) gpdl profileclean: - nmake -f $(MAKEFILE) DEVSTUDIO="$(DEVSTUDIO)" FT_BRIDGE=$(FT_BRIDGE) $(PROFILEDEFS) $(WINDEFS) clean + nmake -f $(MAKEFILE) $(PROFILEDEFS) FT_BRIDGE=$(FT_BRIDGE) clean profilebsc: - nmake -f $(MAKEFILE) DEVSTUDIO="$(DEVSTUDIO)" FT_BRIDGE=$(FT_BRIDGE) $(PROFILEDEFS) $(WINDEFS) bsc + nmake -f $(MAKEFILE) $(PROFILEDEFS) FT_BRIDGE=$(FT_BRIDGE) bsc @@ -1999,22 +2154,22 @@ ufst-lib: # nmake -f makefile.artifex fco_lib.a if_lib.a psi_lib.a tt_lib.a ufst-debug: ufst-lib - nmake -f $(MAKEFILE) DEVSTUDIO="$(DEVSTUDIO)" $(UFSTBASEDEFS) $(UFSTDEBUGDEFS) UFST_CFLAGS="$(UFST_CFLAGS)" $(WINDEFS) + nmake -f $(MAKEFILE) $(RECURSIVEDEFS) $(UFSTBASEDEFS) $(UFSTDEBUGDEFS) UFST_CFLAGS="$(UFST_CFLAGS)" ufst-debugclean: ufst-lib - nmake -f $(MAKEFILE) DEVSTUDIO="$(DEVSTUDIO)" $(UFSTBASEDEFS) $(UFSTDEBUGDEFS) UFST_CFLAGS="$(UFST_CFLAGS)" $(WINDEFS) clean + nmake -f $(MAKEFILE) $(RECURSIVEDEFS) $(UFSTBASEDEFS) $(UFSTDEBUGDEFS) UFST_CFLAGS="$(UFST_CFLAGS)" clean ufst-debugbsc: ufst-lib - nmake -f $(MAKEFILE) DEVSTUDIO="$(DEVSTUDIO)" $(UFSTBASEDEFS) $(UFSTDEBUGDEFS) UFST_CFLAGS="$(UFST_CFLAGS)" $(WINDEFS) bsc + nmake -f $(MAKEFILE) $(RECURSIVEDEFS) $(UFSTBASEDEFS) $(UFSTDEBUGDEFS) UFST_CFLAGS="$(UFST_CFLAGS)" bsc ufst: ufst-lib - nmake -f $(MAKEFILE) DEVSTUDIO="$(DEVSTUDIO)" $(UFSTBASEDEFS) $(UFSTDEFS) UFST_CFLAGS="$(UFST_CFLAGS)" $(WINDEFS) + nmake -f $(MAKEFILE) $(RECURSIVEDEFS) $(UFSTBASEDEFS) $(UFSTDEFS) UFST_CFLAGS="$(UFST_CFLAGS)" ufst-clean: ufst-lib - nmake -f $(MAKEFILE) DEVSTUDIO="$(DEVSTUDIO)" $(UFSTBASEDEFS) $(UFSTDEFS) UFST_CFLAGS="$(UFST_CFLAGS)" $(WINDEFS) clean + nmake -f $(MAKEFILE) $(RECURSIVEDEFS) $(UFSTBASEDEFS) $(UFSTDEFS) UFST_CFLAGS="$(UFST_CFLAGS)" clean ufst-bsc: ufst-lib - nmake -f $(MAKEFILE) DEVSTUDIO="$(DEVSTUDIO)" $(UFSTBASEDEFS) $(UFSTDEFS) UFST_CFLAGS="$(UFST_CFLAGS)" $(WINDEFS) bsc + nmake -f $(MAKEFILE) $(RECURSIVEDEFS) $(UFSTBASEDEFS) $(UFSTDEFS) UFST_CFLAGS="$(UFST_CFLAGS)" bsc #----------------------- Individual Product Targets --------------------# gs:$(GS_XE) $(GSCONSOLE_XE) diff --git a/psi/nsisinst.nsi b/psi/nsisinst.nsi index e26d66c6..5c272552 100644 --- a/psi/nsisinst.nsi +++ b/psi/nsisinst.nsi @@ -128,6 +128,9 @@ CRCCheck on !define MUI_FINISHPAGE_LINK_LOCATION http://www.ghostscript.com/ !insertmacro MUI_PAGE_WELCOME + +Page custom OldVersionsPageCreate + !insertmacro MUI_PAGE_LICENSE "LICENSE" !insertmacro MUI_PAGE_DIRECTORY !insertmacro MUI_PAGE_INSTFILES @@ -135,6 +138,23 @@ CRCCheck on !insertmacro MUI_LANGUAGE "English" +Function OldVersionsPageCreate + !insertmacro MUI_HEADER_TEXT "Previous Ghostscript Installations" "Optionally run the uninstallers for previous Ghostscript installations$\nClick $\"Cancel$\" to stop uninstalling previous installs" + + StrCpy $0 0 + loop: + EnumRegKey $1 HKLM "Software\Artifex\GPL Ghostscript" $0 + StrCmp $1 "" done + IntOp $0 $0 + 1 + MessageBox MB_YESNOCANCEL|MB_ICONQUESTION "Uninstall Ghostscript Version $1?" IDNO loop IDCANCEL done + Var /GLOBAL uninstexe + ReadRegStr $uninstexe HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\GPL Ghostscript $1" "UninstallString" + ExecWait "$uninstexe" + Goto loop + done: + +FunctionEnd + !searchparse /ignorecase /noerrors "${TARGET}" w WINTYPE !echo "Building ${WINTYPE}-bit installer" @@ -239,10 +259,11 @@ Function .onInit Abort ${EndIf} !endif - System::Call 'kernel32::CreateMutexA(i 0, i 0, t "GhostscriptInstaller") i .r1 ?e' + + System::Call 'kernel32::CreateMutexA(i 0, i 0, t "Ghostscript${VERSION}Installer") i .r1 ?e' Pop $R0 StrCmp $R0 0 +3 - MessageBox MB_OK "The Ghostscript installer is already running." /SD IDOK + MessageBox MB_OK "The Ghostscript ${VERSION} installer is already running." /SD IDOK Abort FunctionEnd @@ -266,7 +287,7 @@ Delete "$INSTDIR\uninstgs.exe" !if "${WINTYPE}" == "64" SetRegView 64 !endif -DeleteRegKey HKEY_LOCAL_MACHINE "SOFTWARE\Artifex\GPL Ghostscript\${VERSION}" +DeleteRegKey HKEY_LOCAL_MACHINE "Software\Artifex\GPL Ghostscript\${VERSION}" DeleteRegKey HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\Uninstall\GPL Ghostscript ${VERSION}" DeleteRegKey HKEY_LOCAL_MACHINE "Software\GPL Ghostscript\${VERSION}" RMDir /r "$INSTDIR\doc" diff --git a/psi/winint.mak b/psi/winint.mak index 08452e52..10656e98 100644 --- a/psi/winint.mak +++ b/psi/winint.mak @@ -1,4 +1,4 @@ -# Copyright (C) 2001-2019 Artifex Software, Inc. +# Copyright (C) 2001-2020 Artifex Software, Inc. # All Rights Reserved. # # This software is provided AS-IS with no warranty, either express or diff --git a/psi/zbfont.c b/psi/zbfont.c index 262fea95..abc03aa0 100644 --- a/psi/zbfont.c +++ b/psi/zbfont.c @@ -272,7 +272,7 @@ gs_font_map_glyph_to_unicode(gs_font *font, gs_glyph glyph, int ch, ushort *u, u * can't be a default value for FontInfo.GlyphNames2Unicode . */ } - if (glyph <= GS_MIN_CID_GLYPH) { + if (glyph <= GS_MIN_CID_GLYPH && glyph != GS_NO_GLYPH) { UnicodeDecoding = zfont_get_to_unicode_map(font->dir); if (UnicodeDecoding != NULL && r_type(UnicodeDecoding) == t_dictionary) return gs_font_map_glyph_by_dict(font->memory, UnicodeDecoding, glyph, u, length); diff --git a/psi/zcolor.c b/psi/zcolor.c index d20434e7..373bc06b 100644 --- a/psi/zcolor.c +++ b/psi/zcolor.c @@ -792,9 +792,9 @@ int zcolor_remap_color(i_ctx_t *i_ctx_p) { /* Remap both colors. This should never hurt. */ - gs_swapcolors(igs); + gs_swapcolors_quick(igs); gx_unset_dev_color(igs); - gs_swapcolors(igs); + gs_swapcolors_quick(igs); gx_unset_dev_color(igs); return 0; } @@ -6929,7 +6929,8 @@ zswapcolors(i_ctx_t * i_ctx_p) istate->pattern[0] = istate->pattern[1]; istate->pattern[1] = tmp_pat; - return gs_swapcolors(igs); + gs_swapcolors_quick(igs); + return 0; } static int diff --git a/psi/zfile.c b/psi/zfile.c index 2f13992f..be03a556 100644 --- a/psi/zfile.c +++ b/psi/zfile.c @@ -733,7 +733,8 @@ ztempfile(i_ctx_t *i_ctx_p) os_ptr op = osp; const char *pstr; char fmode[4]; - int code = parse_file_access_string(op, fmode); + char fmode_temp[4]; + int code = parse_file_access_string(op, fmode_temp); char *prefix = NULL; char *fname= NULL; uint fnlen; @@ -750,7 +751,7 @@ ztempfile(i_ctx_t *i_ctx_p) goto done; } - strcat(fmode, gp_fmode_binary_suffix); + snprintf(fmode, sizeof(fmode), "%s%s", fmode_temp, gp_fmode_binary_suffix); if (r_has_type(op - 1, t_null)) pstr = gp_scratch_file_name_prefix; else { diff --git a/psi/zfilter.c b/psi/zfilter.c index dd06c755..3ce7652c 100644 --- a/psi/zfilter.c +++ b/psi/zfilter.c @@ -32,6 +32,10 @@ #include "ifilter.h" #include "files.h" /* for filter_open, file_d'_buffer_size */ +#ifdef URF_INCLUDED +#include "urffilter.c" +#endif + /* <source> ASCIIHexEncode/filter <file> */ /* <source> <dict> ASCIIHexEncode/filter <file> */ static int @@ -105,6 +109,7 @@ zRLE(i_ctx_t *i_ctx_p) stream_RLE_state state; int code; + s_RLE_template.set_defaults((stream_state *)&state); check_op(2); code = rl_setup(op - 1, &state.EndOfData); if (code < 0) @@ -497,6 +502,9 @@ const op_def zfilter_op_defs[] = { {"2RunLengthEncode", zRLE}, {"1RunLengthDecode", zRLD}, {"1PWGDecode", zPWGD}, +#ifdef URF_INCLUDED + {"1URFDecode", zURFD}, +#endif {"3SubFileDecode", zSFD}, {"1.EOFDecode", zEOFD}, op_def_end(0) diff --git a/psi/zfont2.c b/psi/zfont2.c index 19c1e9ef..6e424c9d 100644 --- a/psi/zfont2.c +++ b/psi/zfont2.c @@ -1667,8 +1667,14 @@ undelta(ref *ops, unsigned int cnt) unsigned int i; for (i = 0; i < cnt; i++) { - if (!r_has_type(&ops[i], t_real)) - make_real(&ops[i], (float)ops[i].value.intval); + if (!r_has_type(&ops[i], t_real)) { + /* Strictly speaking assigning one element of union + * to another, overlapping element of a different size is + * undefined behavior, hence assign to an intermediate variable + */ + float fl = (float)ops[i].value.intval; + make_real(&ops[i], fl); + } } for (i = 1; i < cnt; i++) { make_real(&ops[i], ops[i].value.realval + ops[i - 1].value.realval); diff --git a/psi/zpaint.c b/psi/zpaint.c index efffaab8..3251c1be 100644 --- a/psi/zpaint.c +++ b/psi/zpaint.c @@ -19,6 +19,8 @@ #include "oper.h" #include "gspaint.h" #include "igstate.h" +#include "store.h" +#include "estack.h" /* - fill - */ static int @@ -41,6 +43,60 @@ zstroke(i_ctx_t *i_ctx_p) return gs_stroke(igs); } +static int +fillstroke_cont(i_ctx_t *i_ctx_p) +{ + os_ptr op = osp; + int restart, code; + + check_type(*op, t_integer); + restart = (int)op->value.intval; + code = gs_fillstroke(igs, &restart); + if (code == gs_error_Remap_Color) { + op->value.intval = restart; + return code; + } + pop(1); + return code; +} + +static int +zfillstroke(i_ctx_t *i_ctx_p) +{ + os_ptr op = osp; + push(1); + make_int(op, 0); /* 0 implies we are at fill color, need to swap first */ + push_op_estack(fillstroke_cont); + return o_push_estack; +} + +static int +eofillstroke_cont(i_ctx_t *i_ctx_p) +{ + os_ptr op = osp; + int restart, code; + + check_type(*op, t_integer); + restart = (int)op->value.intval; + code = gs_eofillstroke(igs, &restart); + if (code == gs_error_Remap_Color) { + op->value.intval = restart; + return code; + } + pop(1); + return code; +} + +static int +zeofillstroke(i_ctx_t *i_ctx_p) +{ + os_ptr op = osp; + push(1); + make_int(op, 0); + push_op_estack(eofillstroke_cont); + return o_push_estack; +} + /* ------ Non-standard operators ------ */ /* - .fillpage - */ @@ -80,5 +136,9 @@ const op_def zpaint_op_defs[] = /* Non-standard operators */ {"0.fillpage", zfillpage}, {"3.imagepath", zimagepath}, + {"0.eofillstroke", zeofillstroke}, + {"0.fillstroke", zfillstroke}, + {"0%eofillstroke_cont", eofillstroke_cont }, + {"0%fillstroke_cont", fillstroke_cont }, op_def_end(0) }; diff --git a/psi/zpcolor.c b/psi/zpcolor.c index 037ddafb..4f8b10cd 100644 --- a/psi/zpcolor.c +++ b/psi/zpcolor.c @@ -379,7 +379,7 @@ pattern_paint_finish(i_ctx_t *i_ctx_p) } } } - code = gx_pattern_cache_add_entry(igs, pdev, &ctile); + code = gx_pattern_cache_add_entry(igs, pdev, &ctile, igs); if (code < 0) return code; } diff --git a/psi/ztype.c b/psi/ztype.c index f42f35e0..94e5e032 100644 --- a/psi/ztype.c +++ b/psi/ztype.c @@ -304,7 +304,14 @@ zcvr(i_ctx_t *i_ctx_p) switch (r_type(op)) { case t_integer: - make_real(op, (float)op->value.intval); + { + /* Strictly speaking assigning one element of union + * to another, overlapping element of a different size is + * undefined behavior, hence assign to an intermediate variable + */ + float fl = (float)op->value.intval; + make_real(op, fl); + } case t_real: return 0; default: diff --git a/psi/zvmem.c b/psi/zvmem.c index b6e366fa..5c0810f3 100644 --- a/psi/zvmem.c +++ b/psi/zvmem.c @@ -84,9 +84,6 @@ zsave(i_ctx_t *i_ctx_p) code = gs_gsave_for_save(igs, &prev); if (code < 0) return code; - code = gs_gsave(igs); - if (code < 0) - return code; vmsave->gsave = prev; push(1); make_tav(op, t_save, 0, saveid, sid); |