JPEGView/Independent JPEG Group/makefile.bcc

1 line
9.1 KiB
Plaintext
Raw Permalink Normal View History

# Makefile for Independent JPEG Group's software # This makefile is suitable for Borland C (Turbo C) on MS-DOS. # It is set up for Borland C++, revision 3.0 or later. # For older versions (pre-3.0), replace "-O2" with "-O -G -Z" in CFLAGS. # If you have an even older version of Turbo C, you may be able to make it # work by saying "CC= tcc" below. (Very early versions of Turbo C++, # like 1.01, are so buggy that you may as well forget it.) # Thanks to Tom Wright and Ge' Weijers for this file. # Read installation instructions before saying "make" !! # The name of your C compiler: CC= bcc # You may need to adjust these cc options: CFLAGS= -ms -w-par -O2 # -ms selects small memory model for most efficient code # -w-par suppresses warnings about unused function parameters # -O2 enables full code optimization (for pre-3.0 Borland C++, use -O -G -Z) # Generally, we recommend defining any configuration symbols in jconfig.h, # NOT via -D switches here. # Link-time cc options: LDFLAGS= -ms # memory model option here must match CFLAGS! # Put here the object file name for the correct system-dependent memory # manager file. For DOS, we recommend jmemdos.c and jmemdosa.asm. SYSDEPMEM= jmemdos.obj jmemdosa.obj # End of configurable options. # source files: JPEG library proper LIBSOURCES= jcapi.c jccoefct.c jccolor.c jcdctmgr.c jchuff.c jcmainct.c \ jcmarker.c jcmaster.c jcomapi.c jcparam.c jcprepct.c jcsample.c \ jdapi.c jdatasrc.c jdatadst.c jdcoefct.c jdcolor.c jddctmgr.c \ jdhuff.c jdmainct.c jdmarker.c jdmaster.c jdpostct.c jdsample.c \ jerror.c jutils.c jfdctllm.c jidctllm.c jidctred.c jquant1.c \ jquant2.c jmemmgr.c jmemansi.c jmemname.c jmemnobs.c jmemdos.c # source files: cjpeg/djpeg applications APPSOURCES= cjpeg.c djpeg.c rdppm.c wrppm.c rdgif.c wrgif.c rdtarga.c \ wrtarga.c SOURCES= $(LIBSOURCES) $(APPSOURCES) # files included by source files INCLUDES= jdct.h jerror.h jinclude.h jmemsys.h jmorecfg.h jpegint.h \ jpeglib.h jversion.h cdjpeg.h cderror.h # documentation, test, and support files DOCS= README install.doc usage.doc cjpeg.1 djpeg.1 example.c libjpeg.doc \ structure.doc coderules.doc filelist.doc change.log MAKEFILES= configure makefile.auto makefile.ansi makefile.unix \ makefile.manx makefile.sas makcjpeg.st makdjpeg.st makljpeg.st \ makefile.bcc makefile.mc6 makefile.mms makefile.vms makvms.opt CONFIGFILES= jconfig.auto jconfig.manx jconfig.sas jconfig.st jconfig.bcc \ jconfig.mc6 jconfig.vms OTHERFILES= jconfig.doc ckconfig.c ansi2knr.c ansi2knr.1 jmemdosa.asm TESTFILES= testorig.jpg testimg.ppm testimg.gif testimg.jpg DISTFILES= $(DOCS) $(MAKEFILES) $(CONFIGFILES) $(SOURCES) $(INCLUDES) \ $(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= jcapi.obj jcparam.obj jdatadst.obj jcmaster.obj jcmarker.obj \ jcmainct.obj jcprepct.obj jccoefct.obj jccolor.obj jcsample.obj \ jchuff.obj jcdctmgr.obj jfdctllm.obj # decompression library object files DLIBOBJECTS= jdapi.obj jdatasrc.obj jdmaster.obj jdmarker.obj jdmainct.obj \ jdcoefct.obj jdpostct.obj jddctmgr.obj jidctllm.obj jidctred.obj \ jdhuff.obj jdsample.obj jdcolor.obj jquant1.obj jquant2.obj # These objectfiles are included in libjpeg.lib LIBOBJECTS= $(CLIBOBJECTS) $(DLIBOBJECTS) $(COMOBJECTS) # object files for cjpeg and djpeg applications (excluding library files) COBJECTS= cjpeg.obj rdppm.obj rdgif.obj rdtarga.obj DOBJECTS= djpeg.obj wrppm.obj wrgif.obj wrtarga.obj # need linker response file because file list > 128 chars RFILE= libjpeg.ans all: libjpeg.lib cjpeg.exe djpeg.exe libjpeg.lib: $(LIBOBJECTS) $(RFILE) del libjpeg.lib tlib @$(RFILE) # linker response file for building libjpeg.lib $(RFILE) : Makefile del $(RFILE) echo libjpeg.lib & >$(RFILE) echo +jcapi.obj +jcparam.obj +jdatadst.obj +jcmaster.obj & >>$(RFILE) echo +jcmarker.obj +jcmainct.o