summaryrefslogtreecommitdiff
path: root/main
diff options
context:
space:
mode:
Diffstat (limited to 'main')
-rw-r--r--main/pcl6_gcc.mak2
-rw-r--r--main/pcl6_msvc.mak8
2 files changed, 10 insertions, 0 deletions
diff --git a/main/pcl6_gcc.mak b/main/pcl6_gcc.mak
index 52c8719f3..e2d45ac58 100644
--- a/main/pcl6_gcc.mak
+++ b/main/pcl6_gcc.mak
@@ -30,6 +30,7 @@ XCFLAGS?=
# The build process will put all of its output in this directory
GENDIR?=./obj
+AUXDIR?=./aux
PGGENDIR?=./pgobj
# The sources are taken from these directories:
@@ -46,6 +47,7 @@ PSSRCDIR?=../gs/psi
ZSRCDIR?=../gs/zlib
ZGENDIR?=$(GENDIR)
ZOBJDIR?=$(GENDIR)
+ZAUXDIR?=$(AUXDIR)
SHARE_ZLIB?=0
# Specify the location of libpng.
diff --git a/main/pcl6_msvc.mak b/main/pcl6_msvc.mak
index 8717ff205..669c24895 100644
--- a/main/pcl6_msvc.mak
+++ b/main/pcl6_msvc.mak
@@ -33,6 +33,14 @@ GENDIR=.\obj
!endif
!endif
+!ifndef AUXDIR
+!if "$(DEBUG)"=="1"
+AUXDIR=.\debugaux
+!else
+AUXDIR=.\relaux
+!endif
+!endif
+
# The sources are taken from these directories:
!ifndef GLSRCDIR
GLSRCDIR=..\gs\base