summaryrefslogtreecommitdiff
path: root/psi
diff options
context:
space:
mode:
authorRalph Giles <ralph.giles@artifex.com>2008-08-23 02:57:39 +0000
committerRalph Giles <ralph.giles@artifex.com>2008-08-23 02:57:39 +0000
commit7c5e175d4b5f7ed640704089024da96a211d6558 (patch)
tree58222a8743a548540225f85f9ecea9e165a8e0f8 /psi
parent1db82cc8b0d9c61572cdf64d236f0806711c5679 (diff)
Fix a code separation issue: int.mak and psromfs.mak are in PSSRC.
PSSRCDIR was also not on the include path for the psi code which references the interpreter source. git-svn-id: http://svn.ghostscript.com/ghostscript/trunk@9021 a1074d23-0009-0410-80fe-cf8c14f379e6
Diffstat (limited to 'psi')
-rw-r--r--psi/psi.mak5
1 files changed, 3 insertions, 2 deletions
diff --git a/psi/psi.mak b/psi/psi.mak
index 6c4c5d56a..4e58d8023 100644
--- a/psi/psi.mak
+++ b/psi/psi.mak
@@ -1,8 +1,9 @@
-# Copyright (C) 1996, 1997, 1998 Aladdin Enterprises. All rights reserved.
+# Copyright (C) 1996-2008 Artifex Software Inc. All rights reserved.
# Unauthorized use, copying, and/or distribution prohibited.
# makefile for PS Inteface (PSI) to Ghostscript PostScript.
# Users of this makefile must define the following:
+# PSSRCDIR - the PS interpreter source directory
# GLSRCDIR - the GS library source directory
# GLGENDIR - the GS library generated file directory
# PLSRCDIR - the PCL* support library source directory
@@ -19,7 +20,7 @@ PSIGEN=$(PSIGENDIR)$(D)
PSIOBJ=$(PSIOBJDIR)$(D)
PSIO_=$(O_)$(PSIOBJ)
-PSICCC=$(CC_) $(I_)$(PSISRCDIR)$(_I) $(I_)$(PSIGENDIR)$(_I) $(I_)$(PLSRCDIR)$(_I) $(I_)$(GLSRCDIR)$(_I) $(I_)$(GLGENDIR)$(_I) $(C_)
+PSICCC=$(CC_) $(I_)$(PSISRCDIR)$(_I) $(I_)$(PSIGENDIR)$(_I) $(I_)$(PLSRCDIR)$(_I) $(I_)$(PSSRCDIR)$(_I) $(I_)$(GLSRCDIR)$(_I) $(I_)$(GLGENDIR)$(_I) $(C_)
# Define the name of this makefile.
PSI_MAK=$(PSISRC)psi.mak