Bringing jpeg-8d into the main branch
[AROS.git] / workbench / libs / jpeg / makefile.unix
blobeaadfc1db86bfc01333b6af3e7ab7eb662fc90ce
1 # Makefile for Independent JPEG Group's software
3 # This makefile is suitable for Unix-like systems with non-ANSI compilers.
4 # If you have an ANSI compiler, makefile.ansi is a better starting point.
6 # Read installation instructions before saying "make" !!
8 # The name of your C compiler:
9 CC= cc
11 # You may need to adjust these cc options:
12 CFLAGS= -O
13 # Generally, we recommend defining any configuration symbols in jconfig.h,
14 # NOT via -D switches here.
15 # However, any special defines for ansi2knr.c may be included here:
16 ANSI2KNRFLAGS= 
18 # Link-time cc options:
19 LDFLAGS= 
21 # To link any special libraries, add the necessary -l commands here.
22 LDLIBS= 
24 # Put here the object file name for the correct system-dependent memory
25 # manager file.  For Unix this is usually jmemnobs.o, but you may want
26 # to use jmemansi.o or jmemname.o if you have limited swap space.
27 SYSDEPMEM= jmemnobs.o
29 # miscellaneous OS-dependent stuff
30 # linker
31 LN= $(CC)
32 # file deletion command
33 RM= rm -f
34 # file rename command
35 MV= mv
36 # library (.a) file creation command
37 AR= ar rc
38 # second step in .a creation (use "touch" if not needed)
39 AR2= ranlib
41 # End of configurable options.
44 # source files: JPEG library proper
45 LIBSOURCES= jaricom.c jcapimin.c jcapistd.c jcarith.c jccoefct.c jccolor.c \
46         jcdctmgr.c jchuff.c jcinit.c jcmainct.c jcmarker.c jcmaster.c \
47         jcomapi.c jcparam.c jcprepct.c jcsample.c jctrans.c jdapimin.c \
48         jdapistd.c jdarith.c jdatadst.c jdatasrc.c jdcoefct.c jdcolor.c \
49         jddctmgr.c jdhuff.c jdinput.c jdmainct.c jdmarker.c jdmaster.c \
50         jdmerge.c jdpostct.c jdsample.c jdtrans.c jerror.c jfdctflt.c \
51         jfdctfst.c jfdctint.c jidctflt.c jidctfst.c jidctint.c jquant1.c \
52         jquant2.c jutils.c jmemmgr.c
53 # memmgr back ends: compile only one of these into a working library
54 SYSDEPSOURCES= jmemansi.c jmemname.c jmemnobs.c jmemdos.c jmemmac.c
55 # source files: cjpeg/djpeg/jpegtran applications, also rdjpgcom/wrjpgcom
56 APPSOURCES= cjpeg.c djpeg.c jpegtran.c rdjpgcom.c wrjpgcom.c cdjpeg.c \
57         rdcolmap.c rdswitch.c transupp.c rdppm.c wrppm.c rdgif.c wrgif.c \
58         rdtarga.c wrtarga.c rdbmp.c wrbmp.c rdrle.c wrrle.c
59 SOURCES= $(LIBSOURCES) $(SYSDEPSOURCES) $(APPSOURCES)
60 # files included by source files
61 INCLUDES= jdct.h jerror.h jinclude.h jmemsys.h jmorecfg.h jpegint.h \
62         jpeglib.h jversion.h cdjpeg.h cderror.h transupp.h
63 # documentation, test, and support files
64 DOCS= README install.txt usage.txt cjpeg.1 djpeg.1 jpegtran.1 rdjpgcom.1 \
65         wrjpgcom.1 wizard.txt example.c libjpeg.txt structure.txt \
66         coderules.txt filelist.txt change.log
67 MKFILES= configure Makefile.in makefile.ansi makefile.unix makefile.bcc \
68         makefile.mc6 makefile.dj makefile.wat makefile.vc makejdsw.vc6 \
69         makeadsw.vc6 makejdep.vc6 makejdsp.vc6 makejmak.vc6 makecdep.vc6 \
70         makecdsp.vc6 makecmak.vc6 makeddep.vc6 makeddsp.vc6 makedmak.vc6 \
71         maketdep.vc6 maketdsp.vc6 maketmak.vc6 makerdep.vc6 makerdsp.vc6 \
72         makermak.vc6 makewdep.vc6 makewdsp.vc6 makewmak.vc6 makejsln.v10 \
73         makeasln.v10 makejvcx.v10 makejfil.v10 makecvcx.v10 makecfil.v10 \
74         makedvcx.v10 makedfil.v10 maketvcx.v10 maketfil.v10 makervcx.v10 \
75         makerfil.v10 makewvcx.v10 makewfil.v10 makeproj.mac makcjpeg.st \
76         makdjpeg.st makljpeg.st maktjpeg.st makefile.manx makefile.sas \
77         makefile.mms makefile.vms makvms.opt
78 CONFIGFILES= jconfig.cfg jconfig.bcc jconfig.mc6 jconfig.dj jconfig.wat \
79         jconfig.vc jconfig.mac jconfig.st jconfig.manx jconfig.sas \
80         jconfig.vms
81 CONFIGUREFILES= config.guess config.sub install-sh ltmain.sh depcomp missing
82 OTHERFILES= jconfig.txt ckconfig.c ansi2knr.c ansi2knr.1 jmemdosa.asm \
83         libjpeg.map
84 TESTFILES= testorig.jpg testimg.ppm testimg.bmp testimg.jpg testprog.jpg \
85         testimgp.jpg
86 DISTFILES= $(DOCS) $(MKFILES) $(CONFIGFILES) $(SOURCES) $(INCLUDES) \
87         $(CONFIGUREFILES) $(OTHERFILES) $(TESTFILES)
88 # library object files common to compression and decompression
89 COMOBJECTS= jaricom.o jcomapi.o jutils.o jerror.o jmemmgr.o $(SYSDEPMEM)
90 # compression library object files
91 CLIBOBJECTS= jcapimin.o jcapistd.o jcarith.o jctrans.o jcparam.o \
92         jdatadst.o jcinit.o jcmaster.o jcmarker.o jcmainct.o jcprepct.o \
93         jccoefct.o jccolor.o jcsample.o jchuff.o jcdctmgr.o jfdctfst.o \
94         jfdctflt.o jfdctint.o
95 # decompression library object files
96 DLIBOBJECTS= jdapimin.o jdapistd.o jdarith.o jdtrans.o jdatasrc.o \
97         jdmaster.o jdinput.o jdmarker.o jdhuff.o jdmainct.o \
98         jdcoefct.o jdpostct.o jddctmgr.o jidctfst.o jidctflt.o \
99         jidctint.o jdsample.o jdcolor.o jquant1.o jquant2.o jdmerge.o
100 # These objectfiles are included in libjpeg.a
101 LIBOBJECTS= $(CLIBOBJECTS) $(DLIBOBJECTS) $(COMOBJECTS)
102 # object files for sample applications (excluding library files)
103 COBJECTS= cjpeg.o rdppm.o rdgif.o rdtarga.o rdrle.o rdbmp.o rdswitch.o \
104         cdjpeg.o
105 DOBJECTS= djpeg.o wrppm.o wrgif.o wrtarga.o wrrle.o wrbmp.o rdcolmap.o \
106         cdjpeg.o
107 TROBJECTS= jpegtran.o rdswitch.o cdjpeg.o transupp.o
110 all: ansi2knr libjpeg.a cjpeg djpeg jpegtran rdjpgcom wrjpgcom
112 # This rule causes ansi2knr to be invoked.
113 .c.o:
114         ./ansi2knr $*.c T$*.c
115         $(CC) $(CFLAGS) -c T$*.c
116         $(RM) T$*.c $*.o
117         $(MV) T$*.o $*.o
119 ansi2knr: ansi2knr.c
120         $(CC) $(CFLAGS) $(ANSI2KNRFLAGS) -o ansi2knr ansi2knr.c
122 libjpeg.a: ansi2knr $(LIBOBJECTS)
123         $(RM) libjpeg.a
124         $(AR) libjpeg.a  $(LIBOBJECTS)
125         $(AR2) libjpeg.a
127 cjpeg: ansi2knr $(COBJECTS) libjpeg.a
128         $(LN) $(LDFLAGS) -o cjpeg $(COBJECTS) libjpeg.a $(LDLIBS)
130 djpeg: ansi2knr $(DOBJECTS) libjpeg.a
131         $(LN) $(LDFLAGS) -o djpeg $(DOBJECTS) libjpeg.a $(LDLIBS)
133 jpegtran: ansi2knr $(TROBJECTS) libjpeg.a
134         $(LN) $(LDFLAGS) -o jpegtran $(TROBJECTS) libjpeg.a $(LDLIBS)
136 rdjpgcom: rdjpgcom.o
137         $(LN) $(LDFLAGS) -o rdjpgcom rdjpgcom.o $(LDLIBS)
139 wrjpgcom: wrjpgcom.o
140         $(LN) $(LDFLAGS) -o wrjpgcom wrjpgcom.o $(LDLIBS)
142 jconfig.h: jconfig.txt
143         echo You must prepare a system-dependent jconfig.h file.
144         echo Please read the installation directions in install.txt.
145         exit 1
147 clean:
148         $(RM) *.o cjpeg djpeg jpegtran libjpeg.a rdjpgcom wrjpgcom
149         $(RM) ansi2knr core testout*
151 test: cjpeg djpeg jpegtran
152         $(RM) testout*
153         ./djpeg -dct int -ppm -outfile testout.ppm  testorig.jpg
154         ./djpeg -dct int -bmp -colors 256 -outfile testout.bmp  testorig.jpg
155         ./cjpeg -dct int -outfile testout.jpg  testimg.ppm
156         ./djpeg -dct int -ppm -outfile testoutp.ppm testprog.jpg
157         ./cjpeg -dct int -progressive -opt -outfile testoutp.jpg testimg.ppm
158         ./jpegtran -outfile testoutt.jpg testprog.jpg
159         cmp testimg.ppm testout.ppm
160         cmp testimg.bmp testout.bmp
161         cmp testimg.jpg testout.jpg
162         cmp testimg.ppm testoutp.ppm
163         cmp testimgp.jpg testoutp.jpg
164         cmp testorig.jpg testoutt.jpg
167 jaricom.o: jaricom.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
168 jcapimin.o: jcapimin.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
169 jcapistd.o: jcapistd.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
170 jcarith.o: jcarith.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
171 jccoefct.o: jccoefct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
172 jccolor.o: jccolor.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
173 jcdctmgr.o: jcdctmgr.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
174 jchuff.o: jchuff.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
175 jcinit.o: jcinit.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
176 jcmainct.o: jcmainct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
177 jcmarker.o: jcmarker.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
178 jcmaster.o: jcmaster.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
179 jcomapi.o: jcomapi.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
180 jcparam.o: jcparam.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
181 jcprepct.o: jcprepct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
182 jcsample.o: jcsample.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
183 jctrans.o: jctrans.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
184 jdapimin.o: jdapimin.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
185 jdapistd.o: jdapistd.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
186 jdarith.o: jdarith.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
187 jdatadst.o: jdatadst.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h
188 jdatasrc.o: jdatasrc.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h
189 jdcoefct.o: jdcoefct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
190 jdcolor.o: jdcolor.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
191 jddctmgr.o: jddctmgr.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
192 jdhuff.o: jdhuff.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
193 jdinput.o: jdinput.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
194 jdmainct.o: jdmainct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
195 jdmarker.o: jdmarker.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
196 jdmaster.o: jdmaster.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
197 jdmerge.o: jdmerge.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
198 jdpostct.o: jdpostct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
199 jdsample.o: jdsample.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
200 jdtrans.o: jdtrans.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
201 jerror.o: jerror.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jversion.h jerror.h
202 jfdctflt.o: jfdctflt.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
203 jfdctfst.o: jfdctfst.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
204 jfdctint.o: jfdctint.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
205 jidctflt.o: jidctflt.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
206 jidctfst.o: jidctfst.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
207 jidctint.o: jidctint.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.h
208 jquant1.o: jquant1.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
209 jquant2.o: jquant2.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
210 jutils.o: jutils.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h
211 jmemmgr.o: jmemmgr.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jmemsys.h
212 jmemansi.o: jmemansi.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jmemsys.h
213 jmemname.o: jmemname.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jmemsys.h
214 jmemnobs.o: jmemnobs.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jmemsys.h
215 jmemdos.o: jmemdos.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jmemsys.h
216 jmemmac.o: jmemmac.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jmemsys.h
217 cjpeg.o: cjpeg.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h jversion.h
218 djpeg.o: djpeg.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h jversion.h
219 jpegtran.o: jpegtran.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h transupp.h jversion.h
220 rdjpgcom.o: rdjpgcom.c jinclude.h jconfig.h
221 wrjpgcom.o: wrjpgcom.c jinclude.h jconfig.h
222 cdjpeg.o: cdjpeg.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
223 rdcolmap.o: rdcolmap.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
224 rdswitch.o: rdswitch.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
225 transupp.o: transupp.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h transupp.h
226 rdppm.o: rdppm.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
227 wrppm.o: wrppm.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
228 rdgif.o: rdgif.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
229 wrgif.o: wrgif.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
230 rdtarga.o: rdtarga.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
231 wrtarga.o: wrtarga.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
232 rdbmp.o: rdbmp.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
233 wrbmp.o: wrbmp.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
234 rdrle.o: rdrle.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h
235 wrrle.o: wrrle.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h