diff options
Diffstat (limited to '3rdparty/libjpeg/makefile.wat')
-rw-r--r-- | 3rdparty/libjpeg/makefile.wat | 38 |
1 files changed, 22 insertions, 16 deletions
diff --git a/3rdparty/libjpeg/makefile.wat b/3rdparty/libjpeg/makefile.wat index d90026110a6..a04e96d9ce5 100644 --- a/3rdparty/libjpeg/makefile.wat +++ b/3rdparty/libjpeg/makefile.wat @@ -58,26 +58,29 @@ INCLUDES= jdct.h jerror.h jinclude.h jmemsys.h jmorecfg.h jpegint.h & # documentation, test, and support files DOCS= README install.txt usage.txt cjpeg.1 djpeg.1 jpegtran.1 rdjpgcom.1 & wrjpgcom.1 wizard.txt example.c libjpeg.txt structure.txt & - coderules.txt filelist.txt change.log + coderules.txt filelist.txt cdaltui.txt change.log MKFILES= configure Makefile.in makefile.ansi makefile.unix makefile.b32 & makefile.bcc makefile.mc6 makefile.dj makefile.wat makefile.vc & - makejdsw.vc6 makeadsw.vc6 makejdep.vc6 makejdsp.vc6 makejmak.vc6 & - makecdep.vc6 makecdsp.vc6 makecmak.vc6 makeddep.vc6 makeddsp.vc6 & - makedmak.vc6 maketdep.vc6 maketdsp.vc6 maketmak.vc6 makerdep.vc6 & - makerdsp.vc6 makermak.vc6 makewdep.vc6 makewdsp.vc6 makewmak.vc6 & - makejsln.v10 makeasln.v10 makejvcx.v10 makejfil.v10 makecvcx.v10 & - makecfil.v10 makedvcx.v10 makedfil.v10 maketvcx.v10 maketfil.v10 & - makervcx.v10 makerfil.v10 makewvcx.v10 makewfil.v10 makeproj.mac & - makcjpeg.st makdjpeg.st makljpeg.st maktjpeg.st makefile.manx & - makefile.sas makefile.mms makefile.vms makvms.opt + makefile.vs makejdsw.vc6 makeadsw.vc6 makejdep.vc6 makejdsp.vc6 & + makejmak.vc6 makecdep.vc6 makecdsp.vc6 makecmak.vc6 makeddep.vc6 & + makeddsp.vc6 makedmak.vc6 maketdep.vc6 maketdsp.vc6 maketmak.vc6 & + makerdep.vc6 makerdsp.vc6 makermak.vc6 makewdep.vc6 makewdsp.vc6 & + makewmak.vc6 makejsln.v16 makeasln.v16 makejvcx.v16 makejfil.v16 & + makecvcx.v16 makecfil.v16 makedvcx.v16 makedfil.v16 maketvcx.v16 & + maketfil.v16 makervcx.v16 makerfil.v16 makewvcx.v16 makewfil.v16 & + makejvcx.v17 makecvcx.v17 makedvcx.v17 maketvcx.v17 makervcx.v17 & + makewvcx.v17 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 ltmain.sh depcomp & missing ar-lib -OTHERFILES= jconfig.txt ckconfig.c jmemdosa.asm libjpeg.map -TESTFILES= testorig.jpg testimg.ppm testimg.bmp testimg.jpg testprog.jpg & - testimgp.jpg +OTHERFILES= jconfig.txt ckconfig.c jmemdosa.asm libjpeg.map libjpeg.pc.in & + cjpegalt.c djpegalt.c +TESTFILES= testorig.jpg testimg.ppm testimg.gif 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 @@ -144,14 +147,16 @@ clean: .SYMBOLIC test: cjpeg.exe djpeg.exe jpegtran.exe .SYMBOLIC - del testout*.* - djpeg -dct int -ppm -outfile testout.ppm testorig.jpg - djpeg -dct int -bmp -colors 256 -outfile testout.bmp testorig.jpg - cjpeg -dct int -outfile testout.jpg testimg.ppm + djpeg -dct int -ppm -outfile testout.ppm testorig.jpg + djpeg -dct int -gif -outfile testout.gif testorig.jpg + djpeg -dct int -bmp -colors 256 -outfile testout.bmp testorig.jpg + cjpeg -dct int -outfile testout.jpg testimg.ppm djpeg -dct int -ppm -outfile testoutp.ppm testprog.jpg cjpeg -dct int -progressive -opt -outfile testoutp.jpg testimg.ppm jpegtran -outfile testoutt.jpg testprog.jpg !ifeq SYSTEM DOS fc /b testimg.ppm testout.ppm + fc /b testimg.gif testout.gif fc /b testimg.bmp testout.bmp fc /b testimg.jpg testout.jpg fc /b testimg.ppm testoutp.ppm @@ -160,6 +165,7 @@ test: cjpeg.exe djpeg.exe jpegtran.exe .SYMBOLIC !else echo n > n.tmp comp testimg.ppm testout.ppm < n.tmp + comp testimg.gif testout.gif < n.tmp comp testimg.bmp testout.bmp < n.tmp comp testimg.jpg testout.jpg < n.tmp comp testimg.ppm testoutp.ppm < n.tmp |