summaryrefslogtreecommitdiff
path: root/pxl/pxl_msvc.mak
diff options
context:
space:
mode:
Diffstat (limited to 'pxl/pxl_msvc.mak')
-rw-r--r--pxl/pxl_msvc.mak137
1 files changed, 0 insertions, 137 deletions
diff --git a/pxl/pxl_msvc.mak b/pxl/pxl_msvc.mak
deleted file mode 100644
index 06f5ee5ff..000000000
--- a/pxl/pxl_msvc.mak
+++ /dev/null
@@ -1,137 +0,0 @@
-# Copyright (C) 1997 Aladdin Enterprises. All rights reserved.
-# Unauthorized use, copying, and/or distribution prohibited.
-
-# pxl_msvc.mak
-# Top-level makefile for PCL XL on Win32 platforms using MS Visual C 4.1 or later
-
-# Define the name of this makefile.
-!ifndef MAKEFILE
-MAKEFILE=..\pxl\pxl_msvc.mak
-!endif
-
-# The build process will put all of its output in this directory:
-!ifndef GENDIR
-GENDIR=.\obj
-!endif
-
-# The sources are taken from these directories:
-!ifndef GLSRCDIR
-GLSRCDIR=..\gs\src
-!endif
-!ifndef PLSRCDIR
-PLSRCDIR=..\pl
-!endif
-!ifndef PXLSRCDIR
-PXLSRCDIR=..\pxl
-!endif
-!ifndef COMMONDIR
-COMMONDIR=..\common
-!endif
-!ifndef JSRCDIR
-JSRCDIR=..\gs\jpeg
-JVERSION=6
-!endif
-!ifndef PSRCDIR
-PSRCDIR=..\gs\libpng
-PVERSION=96
-!endif
-!ifndef ZSRCDIR
-ZSRCDIR=..\gs\zlib
-!endif
-
-
-# If you want to build the individual packages in their own directories,
-# you can define this here, although normally you won't need to do this:
-!ifndef GLGENDIR
-GLGENDIR=$(GENDIR)
-!endif
-!ifndef GLOBJDIR
-GLOBJDIR=$(GENDIR)
-!endif
-!ifndef PLGENDIR
-PLGENDIR=$(GENDIR)
-!endif
-!ifndef PLOBJDIR
-PLOBJDIR=$(GENDIR)
-!endif
-!ifndef PXLGENDIR
-PXLGENDIR=$(GENDIR)
-!endif
-!ifndef PXLOBJDIR
-PXLOBJDIR=$(GENDIR)
-!endif
-
-# Language and configuration. These are actually platform-independent,
-# but we define them here just to keep all parameters in one place.
-CONFIG=6
-TARGET_DEVS=$(PXLOBJDIR)$(D)pxl.dev
-
-# Main file's name
-MAIN_OBJ=$(PLOBJDIR)$(D)plmain.$(OBJ) $(PXLOBJDIR)$(D)pximpl.$(OBJ)
-TOP_OBJ=$(PXLOBJDIR)$(D)pxtop.$(OBJ)
-
-# Executable path\name w/o the .EXE extension
-!ifndef TARGET_XE
-TARGET_XE=$(PXLOBJDIR)\pclxl
-!endif
-
-# Debugging options
-!ifndef DEBUG
-DEBUG=1
-!endif
-!ifndef TDEBUG
-TDEBUG=0
-!endif
-!ifndef NOPRIVATE
-NOPRIVATE=0
-!endif
-
-# Target options
-!ifndef CPU_TYPE
-CPU_TYPE=486
-!endif
-!ifndef FPU_TYPE
-FPU_TYPE=0
-!endif
-
-# Assorted definitions. Some of these should probably be factored out....
-!ifndef GS
-GS=gs386
-!endif
-
-# Define which major version of MSVC is being used (currently, 4 & 5 supported)
-!ifndef MSVC_VERSION
-MSVC_VERSION=5
-!endif
-
-!ifndef DEVICE_DEVS
-DD=$(GLGENDIR)$(D)
-DEVICE_DEVS=$(DD)djet500.dev $(DD)ljet4.dev $(DD)pcxmono.dev $(DD)pcxgray.dev \
- $(DD)pcx16.dev $(DD)pcx256.dev $(DD)pcxcmyk.dev \
- $(DD)pbmraw.dev $(DD)pgmraw.dev $(DD)ppmraw.dev $(DD)pkmraw.dev
-
-!endif
-
-# GS options
-#DEVICE_DEVS is defined in the platform-specific file.
-FEATURE_DEVS = $(DD)dps2lib.dev \
- $(DD)path1lib.dev \
- $(DD)patlib.dev \
- $(DD)rld.dev \
- $(DD)roplib.dev \
- $(DD)ttflib.dev \
- $(DD)colimlib.dev \
- $(DD)cielib.dev \
- $(DD)htxlib.dev \
- $(DD)devcmap.dev \
- $(DD)gsnogc.dev
-
-!include $(COMMONDIR)\msvc_top.mak
-
-# Subsystems
-!include $(PLSRCDIR)\pl.mak
-!include $(PXLSRCDIR)\pxl.mak
-
-# Main program.
-!include $(PXLSRCDIR)\pxl_top.mak
-