1991-12-12 19:00:00 -05:00
|
|
|
# Makefile for Independent JPEG Group's software
|
|
|
|
|
|
|
|
# This makefile is for Amiga systems using SAS C 5.10b.
|
1992-03-16 19:00:00 -05:00
|
|
|
# Use jmemname.c as the system-dependent memory manager.
|
1991-12-12 19:00:00 -05:00
|
|
|
# Contributed by Ed Hanway (sisd!jeh@uunet.uu.net).
|
|
|
|
|
|
|
|
# Read SETUP instructions before saying "make" !!
|
|
|
|
|
|
|
|
# The name of your C compiler:
|
|
|
|
CC= lc
|
|
|
|
|
|
|
|
# Uncomment the following lines for generic 680x0 version
|
|
|
|
ARCHFLAGS=
|
|
|
|
SUFFIX=
|
|
|
|
|
|
|
|
# Uncomment the following lines for 68030-only version
|
|
|
|
#ARCHFLAGS= -m3
|
|
|
|
#SUFFIX=.030
|
|
|
|
|
|
|
|
# You may need to adjust these cc options:
|
1992-03-16 19:00:00 -05:00
|
|
|
CFLAGS= -v -b -rr -O -j104 $(ARCHFLAGS) -DHAVE_STDC -DINCLUDES_ARE_ANSI \
|
|
|
|
-DAMIGA -DTWO_FILE_COMMANDLINE -DINCOMPLETE_TYPES_BROKEN \
|
|
|
|
-DNO_MKTEMP -DNEED_SIGNAL_CATCHER
|
1991-12-12 19:00:00 -05:00
|
|
|
# -j104 disables warnings for mismatched const qualifiers
|
|
|
|
|
|
|
|
# Link-time cc options:
|
|
|
|
LDFLAGS= SC SD ND BATCH
|
|
|
|
|
|
|
|
# To link any special libraries, add the necessary commands here.
|
|
|
|
LDLIBS= LIB LIB:lcr.lib
|
|
|
|
|
|
|
|
# miscellaneous OS-dependent stuff
|
|
|
|
# linker
|
|
|
|
LN= blink
|
|
|
|
# file deletion command
|
|
|
|
RM= delete quiet
|
|
|
|
# library (.lib) file creation command
|
|
|
|
AR= oml
|
|
|
|
|
|
|
|
|
|
|
|
# source files (independently compilable files)
|
|
|
|
SOURCES= jbsmooth.c jcarith.c jccolor.c jcdeflts.c jcexpand.c jchuff.c \
|
|
|
|
jcmain.c jcmaster.c jcmcu.c jcpipe.c jcsample.c jdarith.c jdcolor.c \
|
|
|
|
jddeflts.c jdhuff.c jdmain.c jdmaster.c jdmcu.c jdpipe.c jdsample.c \
|
1992-03-16 19:00:00 -05:00
|
|
|
jerror.c jquant1.c jquant2.c jfwddct.c jrevdct.c jutils.c jmemmgr.c \
|
|
|
|
jrdjfif.c jrdgif.c jrdppm.c jrdrle.c jrdtarga.c jwrjfif.c jwrgif.c \
|
|
|
|
jwrppm.c jwrrle.c jwrtarga.c
|
|
|
|
# virtual source files (not present in distribution file)
|
|
|
|
VIRTSOURCES= jmemsys.c
|
|
|
|
# system-dependent implementations of source files
|
|
|
|
SYSDEPFILES= jmemansi.c jmemname.c jmemnobs.c jmemdos.c jmemdos.h \
|
|
|
|
jmemdosa.asm
|
1991-12-12 19:00:00 -05:00
|
|
|
# files included by source files
|
1992-03-16 19:00:00 -05:00
|
|
|
INCLUDES= jinclude.h jconfig.h jpegdata.h jversion.h jmemsys.h egetopt.c
|
1991-12-12 19:00:00 -05:00
|
|
|
# documentation, test, and support files
|
|
|
|
DOCS= README SETUP USAGE CHANGELOG cjpeg.1 djpeg.1 architecture codingrules
|
|
|
|
MAKEFILES= makefile.ansi makefile.unix makefile.manx makefile.sas \
|
1992-03-16 19:00:00 -05:00
|
|
|
makefile.mc5 makefile.mc6 makcjpeg.lnk makdjpeg.lnk makefile.bcc \
|
1991-12-12 19:00:00 -05:00
|
|
|
makcjpeg.lst makdjpeg.lst makefile.pwc makcjpeg.cf makdjpeg.cf \
|
1992-03-16 19:00:00 -05:00
|
|
|
makljpeg.cf makefile.mms makefile.vms makvms.opt
|
|
|
|
OTHERFILES= ansi2knr.c ckconfig.c example.c
|
|
|
|
TESTFILES= testorig.jpg testimg.ppm testimg.gif testimg.jpg
|
|
|
|
DISTFILES= $(DOCS) $(MAKEFILES) $(SOURCES) $(SYSDEPFILES) $(INCLUDES) \
|
|
|
|
$(OTHERFILES) $(TESTFILES)
|
1991-12-12 19:00:00 -05:00
|
|
|
# objectfiles common to cjpeg and djpeg
|
1992-03-16 19:00:00 -05:00
|
|
|
COMOBJECTS= jutils.o jerror.o jmemmgr.o jmemsys.o
|
1991-12-12 19:00:00 -05:00
|
|
|
# compression objectfiles
|
|
|
|
CLIBOBJECTS= jcmaster.o jcdeflts.o jcarith.o jccolor.o jcexpand.o jchuff.o \
|
|
|
|
jcmcu.o jcpipe.o jcsample.o jfwddct.o jwrjfif.o jrdgif.o jrdppm.o \
|
|
|
|
jrdrle.o jrdtarga.o
|
|
|
|
COBJECTS= jcmain.o $(CLIBOBJECTS) $(COMOBJECTS)
|
|
|
|
# decompression objectfiles
|
|
|
|
DLIBOBJECTS= jdmaster.o jddeflts.o jbsmooth.o jdarith.o jdcolor.o jdhuff.o \
|
|
|
|
jdmcu.o jdpipe.o jdsample.o jquant1.o jquant2.o jrevdct.o jrdjfif.o \
|
|
|
|
jwrgif.o jwrppm.o jwrrle.o jwrtarga.o
|
|
|
|
DOBJECTS= jdmain.o $(DLIBOBJECTS) $(COMOBJECTS)
|
|
|
|
# These objectfiles are included in libjpeg.lib
|
|
|
|
LIBOBJECTS= $(CLIBOBJECTS) $(DLIBOBJECTS) $(COMOBJECTS)
|
|
|
|
|
|
|
|
|
|
|
|
all: cjpeg$(SUFFIX) djpeg$(SUFFIX)
|
|
|
|
# By default, libjpeg.lib is not built unless you explicitly request it.
|
|
|
|
# You can add libjpeg.lib to the line above if you want it built by default.
|
|
|
|
|
|
|
|
|
|
|
|
cjpeg$(SUFFIX): $(COBJECTS)
|
|
|
|
$(LN) <WITH <
|
|
|
|
$(LDFLAGS)
|
|
|
|
TO cjpeg$(SUFFIX)
|
|
|
|
FROM LIB:c.o $(COBJECTS)
|
|
|
|
$(LDLIBS)
|
|
|
|
<
|
|
|
|
|
|
|
|
djpeg$(SUFFIX): $(DOBJECTS)
|
|
|
|
$(LN) <WITH <
|
|
|
|
$(LDFLAGS)
|
|
|
|
TO djpeg$(SUFFIX)
|
|
|
|
FROM LIB:c.o $(DOBJECTS)
|
|
|
|
$(LDLIBS)
|
|
|
|
<
|
|
|
|
|
|
|
|
# libjpeg.lib is useful if you are including the JPEG software in a larger
|
|
|
|
# program; you'd include it in your link, rather than the individual modules.
|
|
|
|
libjpeg.lib: $(LIBOBJECTS)
|
|
|
|
-$(RM) libjpeg.lib
|
|
|
|
$(AR) libjpeg.lib r $(LIBOBJECTS)
|
|
|
|
|
|
|
|
clean:
|
1992-03-16 19:00:00 -05:00
|
|
|
-$(RM) *.o cjpeg djpeg cjpeg.030 djpeg.030 libjpeg.lib core testout.*
|
1991-12-12 19:00:00 -05:00
|
|
|
|
|
|
|
distribute:
|
|
|
|
-$(RM) jpegsrc.tar*
|
|
|
|
tar cvf jpegsrc.tar $(DISTFILES)
|
|
|
|
compress -v jpegsrc.tar
|
|
|
|
|
|
|
|
test: cjpeg djpeg
|
1992-03-16 19:00:00 -05:00
|
|
|
-$(RM) testout.ppm testout.gif testout.jpg
|
1991-12-12 19:00:00 -05:00
|
|
|
djpeg testorig.jpg testout.ppm
|
1992-03-16 19:00:00 -05:00
|
|
|
djpeg -G testorig.jpg testout.gif
|
1991-12-12 19:00:00 -05:00
|
|
|
cjpeg testimg.ppm testout.jpg
|
|
|
|
cmp testimg.ppm testout.ppm
|
1992-03-16 19:00:00 -05:00
|
|
|
cmp testimg.gif testout.gif
|
1991-12-12 19:00:00 -05:00
|
|
|
cmp testimg.jpg testout.jpg
|
|
|
|
|
|
|
|
|
|
|
|
jbsmooth.o : jbsmooth.c jinclude.h jconfig.h jpegdata.h
|
|
|
|
jcarith.o : jcarith.c jinclude.h jconfig.h jpegdata.h
|
|
|
|
jccolor.o : jccolor.c jinclude.h jconfig.h jpegdata.h
|
|
|
|
jcdeflts.o : jcdeflts.c jinclude.h jconfig.h jpegdata.h
|
|
|
|
jcexpand.o : jcexpand.c jinclude.h jconfig.h jpegdata.h
|
|
|
|
jchuff.o : jchuff.c jinclude.h jconfig.h jpegdata.h
|
|
|
|
jcmain.o : jcmain.c jinclude.h jconfig.h jpegdata.h jversion.h egetopt.c
|
|
|
|
jcmaster.o : jcmaster.c jinclude.h jconfig.h jpegdata.h
|
|
|
|
jcmcu.o : jcmcu.c jinclude.h jconfig.h jpegdata.h
|
|
|
|
jcpipe.o : jcpipe.c jinclude.h jconfig.h jpegdata.h
|
|
|
|
jcsample.o : jcsample.c jinclude.h jconfig.h jpegdata.h
|
|
|
|
jdarith.o : jdarith.c jinclude.h jconfig.h jpegdata.h
|
|
|
|
jdcolor.o : jdcolor.c jinclude.h jconfig.h jpegdata.h
|
|
|
|
jddeflts.o : jddeflts.c jinclude.h jconfig.h jpegdata.h
|
|
|
|
jdhuff.o : jdhuff.c jinclude.h jconfig.h jpegdata.h
|
|
|
|
jdmain.o : jdmain.c jinclude.h jconfig.h jpegdata.h jversion.h egetopt.c
|
|
|
|
jdmaster.o : jdmaster.c jinclude.h jconfig.h jpegdata.h
|
|
|
|
jdmcu.o : jdmcu.c jinclude.h jconfig.h jpegdata.h
|
|
|
|
jdpipe.o : jdpipe.c jinclude.h jconfig.h jpegdata.h
|
|
|
|
jdsample.o : jdsample.c jinclude.h jconfig.h jpegdata.h
|
|
|
|
jerror.o : jerror.c jinclude.h jconfig.h jpegdata.h
|
|
|
|
jquant1.o : jquant1.c jinclude.h jconfig.h jpegdata.h
|
|
|
|
jquant2.o : jquant2.c jinclude.h jconfig.h jpegdata.h
|
|
|
|
jfwddct.o : jfwddct.c jinclude.h jconfig.h jpegdata.h
|
|
|
|
jrevdct.o : jrevdct.c jinclude.h jconfig.h jpegdata.h
|
|
|
|
jutils.o : jutils.c jinclude.h jconfig.h jpegdata.h
|
1992-03-16 19:00:00 -05:00
|
|
|
jmemmgr.o : jmemmgr.c jinclude.h jconfig.h jpegdata.h jmemsys.h
|
1991-12-12 19:00:00 -05:00
|
|
|
jrdjfif.o : jrdjfif.c jinclude.h jconfig.h jpegdata.h
|
|
|
|
jrdgif.o : jrdgif.c jinclude.h jconfig.h jpegdata.h
|
|
|
|
jrdppm.o : jrdppm.c jinclude.h jconfig.h jpegdata.h
|
|
|
|
jrdrle.o : jrdrle.c jinclude.h jconfig.h jpegdata.h
|
|
|
|
jrdtarga.o : jrdtarga.c jinclude.h jconfig.h jpegdata.h
|
|
|
|
jwrjfif.o : jwrjfif.c jinclude.h jconfig.h jpegdata.h
|
|
|
|
jwrgif.o : jwrgif.c jinclude.h jconfig.h jpegdata.h
|
|
|
|
jwrppm.o : jwrppm.c jinclude.h jconfig.h jpegdata.h
|
|
|
|
jwrrle.o : jwrrle.c jinclude.h jconfig.h jpegdata.h
|
|
|
|
jwrtarga.o : jwrtarga.c jinclude.h jconfig.h jpegdata.h
|
1992-03-16 19:00:00 -05:00
|
|
|
jmemsys.o : jmemsys.c jinclude.h jconfig.h jpegdata.h jmemsys.h
|