VC++ compilation but probably configure on Unix will go and overwrite it or something. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2372 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
100 lines
4.7 KiB
Plaintext
100 lines
4.7 KiB
Plaintext
# Makefile for Independent JPEG Group's software
|
|
|
|
# This makefile is for Microsoft Visual C++ on Windows NT (and 95?).
|
|
# It builds the IJG library as a statically linkable library (.LIB),
|
|
# and builds the sample applications as console-mode apps.
|
|
# Thanks to Xingong Chang, Raymond Everly and others.
|
|
|
|
# Read installation instructions before saying "nmake" !!
|
|
# To build an optimized library without debug info, say "nmake nodebug=1".
|
|
|
|
# Put here the object file name for the correct system-dependent memory
|
|
# manager file. For NT we suggest jmemnobs.obj, which expects the OS to
|
|
# provide adequate virtual memory.
|
|
SYSDEPMEM= jmemnobs.obj
|
|
|
|
# miscellaneous OS-dependent stuff
|
|
# file deletion command
|
|
RM= del
|
|
|
|
# End of configurable options.
|
|
|
|
|
|
# source files: JPEG library proper
|
|
LIBSOURCES= jcapimin.c jcapistd.c jccoefct.c jccolor.c jcdctmgr.c jchuff.c \
|
|
jcinit.c jcmainct.c jcmarker.c jcmaster.c jcomapi.c jcparam.c \
|
|
jcphuff.c jcprepct.c jcsample.c jctrans.c jdapimin.c jdapistd.c \
|
|
jdatadst.c jdatasrc.c jdcoefct.c jdcolor.c jddctmgr.c jdhuff.c \
|
|
jdinput.c jdmainct.c jdmarker.c jdmaster.c jdmerge.c jdphuff.c \
|
|
jdpostct.c jdsample.c jdtrans.c jerror.c jfdctflt.c jfdctfst.c \
|
|
jfdctint.c jidctflt.c jidctfst.c jidctint.c jidctred.c jquant1.c \
|
|
jquant2.c jutils.c jmemmgr.c
|
|
# memmgr back ends: compile only one of these into a working library
|
|
SYSDEPSOURCES= jmemansi.c jmemname.c jmemnobs.c jmemdos.c jmemmac.c
|
|
# source files: cjpeg/djpeg/jpegtran applications, also rdjpgcom/wrjpgcom
|
|
APPSOURCES= cjpeg.c djpeg.c jpegtran.c rdjpgcom.c wrjpgcom.c cdjpeg.c \
|
|
rdcolmap.c rdswitch.c transupp.c rdppm.c wrppm.c rdgif.c wrgif.c \
|
|
rdtarga.c wrtarga.c rdbmp.c wrbmp.c rdrle.c wrrle.c
|
|
SOURCES= $(LIBSOURCES) $(SYSDEPSOURCES) $(APPSOURCES)
|
|
# files included by source files
|
|
INCLUDES= jchuff.h jdhuff.h jdct.h jerror.h jinclude.h jmemsys.h jmorecfg.h \
|
|
jpegint.h jpeglib.h jversion.h cdjpeg.h cderror.h transupp.h
|
|
# documentation, test, and support files
|
|
DOCS= README install.doc usage.doc cjpeg.1 djpeg.1 jpegtran.1 rdjpgcom.1 \
|
|
wrjpgcom.1 wizard.doc example.c libjpeg.doc structure.doc \
|
|
coderules.doc filelist.doc change.log
|
|
MKFILES= configure makefile.cfg makefile.ansi makefile.unix makefile.bcc \
|
|
makefile.mc6 makefile.dj makefile.wat makefile.vc makelib.ds \
|
|
makeapps.ds makeproj.mac makcjpeg.st makdjpeg.st makljpeg.st \
|
|
maktjpeg.st makefile.manx makefile.sas makefile.mms makefile.vms \
|
|
makvms.opt
|
|
CONFIGFILES= jconfig.cfg jconfig.bcc jconfig.mc6 jconfig.dj jconfig.wat \
|
|
jconfig.vc jconfig.mac jconfig.st jconfig.manx jconfig.sas \
|
|
jconfig.vms
|
|
CONFIGUREFILES= config.guess config.sub install-sh ltconfig ltmain.sh
|
|
OTHERFILES= jconfig.doc ckconfig.c ansi2knr.c ansi2knr.1 jmemdosa.asm
|
|
TESTFILES= testorig.jpg testimg.ppm testimg.bmp testimg.jpg testprog.jpg \
|
|
testimgp.jpg
|
|
DISTFILES= $(DOCS) $(MKFILES) $(CONFIGFILES) $(SOURCES) $(INCLUDES) \
|
|
$(CONFIGUREFILES) $(OTHERFILES) $(TESTFILES)
|
|
# library object files common to compression and decompression
|
|
COMOBJECTS= jcomapi.obj jutils.obj jerror.obj jmemmgr.obj $(SYSDEPMEM)
|
|
# compression library object files
|
|
CLIBOBJECTS= jcapimin.obj jcapistd.obj jctrans.obj jcparam.obj jdatadst.obj \
|
|
jcinit.obj jcmaster.obj jcmarker.obj jcmainct.obj jcprepct.obj \
|
|
jccoefct.obj jccolor.obj jcsample.obj jchuff.obj jcphuff.obj \
|
|
jcdctmgr.obj jfdctfst.obj jfdctflt.obj jfdctint.obj
|
|
# decompression library object files
|
|
DLIBOBJECTS= jdapimin.obj jdapistd.obj jdtrans.obj jdatasrc.obj \
|
|
jdmaster.obj jdinput.obj jdmarker.obj jdhuff.obj jdphuff.obj \
|
|
jdmainct.obj jdcoefct.obj jdpostct.obj jddctmgr.obj jidctfst.obj \
|
|
jidctflt.obj jidctint.obj jidctred.obj jdsample.obj jdcolor.obj \
|
|
jquant1.obj jquant2.obj jdmerge.obj
|
|
# These objectfiles are included in libjpeg.lib
|
|
OBJECTS= $(CLIBOBJECTS) $(DLIBOBJECTS) $(COMOBJECTS)
|
|
# object files for sample applications (excluding library files)
|
|
COBJECTS= cjpeg.obj rdppm.obj rdgif.obj rdtarga.obj rdrle.obj rdbmp.obj \
|
|
rdswitch.obj cdjpeg.obj
|
|
DOBJECTS= djpeg.obj wrppm.obj wrgif.obj wrtarga.obj wrrle.obj wrbmp.obj \
|
|
rdcolmap.obj cdjpeg.obj
|
|
TROBJECTS= jpegtran.obj rdswitch.obj cdjpeg.obj transupp.obj
|
|
|
|
LIBTARGET=..\..\lib\jpeg.lib
|
|
|
|
# Note: we have to put this first, to override the default definition
|
|
# which doesn't work because there are too many files on the command line.
|
|
# This means that we must explicitly use the 'all' target when making
|
|
# jpeg.lib, because of the ordering of targets.
|
|
|
|
defaulttarget:
|
|
echo Please use the 'all' target for this makefile.
|
|
|
|
clean:
|
|
-erase $(LIBTARGET)
|
|
-erase *.obj
|
|
|
|
# Pull in standard variable definitions
|
|
|
|
!include ..\makelib.vc
|
|
|