亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? makefile.ansi.svn-base

?? SumatraPDF是一款小型開源的pdf閱讀工具。雖然玲瓏小巧(只有800多KB)
?? SVN-BASE
字號:
# Makefile for Independent JPEG Group's software# This makefile is suitable for Unix-like systems with ANSI-capable compilers.# If you have a non-ANSI compiler, makefile.unix is a better starting point.# Read installation instructions before saying "make" !!# The name of your C compiler:CC= cc# You may need to adjust these cc options:CFLAGS= -O# Generally, we recommend defining any configuration symbols in jconfig.h,# NOT via -D switches here.# Link-time cc options:LDFLAGS= # To link any special libraries, add the necessary -l commands here.LDLIBS= # Put here the object file name for the correct system-dependent memory# manager file.  For Unix this is usually jmemnobs.o, but you may want# to use jmemansi.o or jmemname.o if you have limited swap space.SYSDEPMEM= jmemnobs.o# miscellaneous OS-dependent stuff# linkerLN= $(CC)# file deletion commandRM= rm -f# library (.a) file creation commandAR= ar rc# second step in .a creation (use "touch" if not needed)AR2= ranlib# End of configurable options.# source files: JPEG library properLIBSOURCES= 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 librarySYSDEPSOURCES= jmemansi.c jmemname.c jmemnobs.c jmemdos.c jmemmac.c# source files: cjpeg/djpeg/jpegtran applications, also rdjpgcom/wrjpgcomAPPSOURCES= 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.cSOURCES= $(LIBSOURCES) $(SYSDEPSOURCES) $(APPSOURCES)# files included by source filesINCLUDES= 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 filesDOCS= 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.logMKFILES= 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.optCONFIGFILES= jconfig.cfg jconfig.bcc jconfig.mc6 jconfig.dj jconfig.wat \        jconfig.vc jconfig.mac jconfig.st jconfig.manx jconfig.sas \        jconfig.vmsCONFIGUREFILES= config.guess config.sub install-sh ltconfig ltmain.shOTHERFILES= jconfig.doc ckconfig.c ansi2knr.c ansi2knr.1 jmemdosa.asmTESTFILES= testorig.jpg testimg.ppm testimg.bmp testimg.jpg testprog.jpg \        testimgp.jpgDISTFILES= $(DOCS) $(MKFILES) $(CONFIGFILES) $(SOURCES) $(INCLUDES) \        $(CONFIGUREFILES) $(OTHERFILES) $(TESTFILES)# library object files common to compression and decompressionCOMOBJECTS= jcomapi.o jutils.o jerror.o jmemmgr.o $(SYSDEPMEM)# compression library object filesCLIBOBJECTS= jcapimin.o jcapistd.o jctrans.o jcparam.o jdatadst.o jcinit.o \        jcmaster.o jcmarker.o jcmainct.o jcprepct.o jccoefct.o jccolor.o \        jcsample.o jchuff.o jcphuff.o jcdctmgr.o jfdctfst.o jfdctflt.o \        jfdctint.o# decompression library object filesDLIBOBJECTS= jdapimin.o jdapistd.o jdtrans.o jdatasrc.o jdmaster.o \        jdinput.o jdmarker.o jdhuff.o jdphuff.o jdmainct.o jdcoefct.o \        jdpostct.o jddctmgr.o jidctfst.o jidctflt.o jidctint.o jidctred.o \        jdsample.o jdcolor.o jquant1.o jquant2.o jdmerge.o# These objectfiles are included in libjpeg.aLIBOBJECTS= $(CLIBOBJECTS) $(DLIBOBJECTS) $(COMOBJECTS)# object files for sample applications (excluding library files)COBJECTS= cjpeg.o rdppm.o rdgif.o rdtarga.o rdrle.o rdbmp.o rdswitch.o \        cdjpeg.oDOBJECTS= djpeg.o wrppm.o wrgif.o wrtarga.o wrrle.o wrbmp.o rdcolmap.o \        cdjpeg.oTROBJECTS= jpegtran.o rdswitch.o cdjpeg.o transupp.oall: libjpeg.a cjpeg djpeg jpegtran rdjpgcom wrjpgcomlibjpeg.a: $(LIBOBJECTS)	$(RM) libjpeg.a	$(AR) libjpeg.a  $(LIBOBJECTS)	$(AR2) libjpeg.acjpeg: $(COBJECTS) libjpeg.a	$(LN) $(LDFLAGS) -o cjpeg $(COBJECTS) libjpeg.a $(LDLIBS)djpeg: $(DOBJECTS) libjpeg.a	$(LN) $(LDFLAGS) -o djpeg $(DOBJECTS) libjpeg.a $(LDLIBS)jpegtran: $(TROBJECTS) libjpeg.a	$(LN) $(LDFLAGS) -o jpegtran $(TROBJECTS) libjpeg.a $(LDLIBS)rdjpgcom: rdjpgcom.o	$(LN) $(LDFLAGS) -o rdjpgcom rdjpgcom.o $(LDLIBS)wrjpgcom: wrjpgcom.o	$(LN) $(LDFLAGS) -o wrjpgcom wrjpgcom.o $(LDLIBS)jconfig.h: jconfig.doc	echo You must prepare a system-dependent jconfig.h file.	echo Please read the installation directions in install.doc.	exit 1clean:	$(RM) *.o cjpeg djpeg jpegtran libjpeg.a rdjpgcom wrjpgcom	$(RM) core testout*test: cjpeg djpeg jpegtran	$(RM) 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 testoutp.ppm testprog.jpg	./cjpeg -dct int -progressive -opt -outfile testoutp.jpg testimg.ppm	./jpegtran -outfile testoutt.jpg testprog.jpg	cmp testimg.ppm testout.ppm	cmp testimg.bmp testout.bmp	cmp testimg.jpg testout.jpg	cmp testimg.ppm testoutp.ppm	cmp testimgp.jpg testoutp.jpg	cmp testorig.jpg testoutt.jpgjcapimin.o: jcapimin.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.hjcapistd.o: jcapistd.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.hjccoefct.o: jccoefct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.hjccolor.o: jccolor.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.hjcdctmgr.o: jcdctmgr.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.hjchuff.o: jchuff.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jchuff.hjcinit.o: jcinit.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.hjcmainct.o: jcmainct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.hjcmarker.o: jcmarker.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.hjcmaster.o: jcmaster.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.hjcomapi.o: jcomapi.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.hjcparam.o: jcparam.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.hjcphuff.o: jcphuff.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jchuff.hjcprepct.o: jcprepct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.hjcsample.o: jcsample.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.hjctrans.o: jctrans.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.hjdapimin.o: jdapimin.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.hjdapistd.o: jdapistd.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.hjdatadst.o: jdatadst.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.hjdatasrc.o: jdatasrc.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.hjdcoefct.o: jdcoefct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.hjdcolor.o: jdcolor.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.hjddctmgr.o: jddctmgr.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.hjdhuff.o: jdhuff.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdhuff.hjdinput.o: jdinput.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.hjdmainct.o: jdmainct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.hjdmarker.o: jdmarker.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.hjdmaster.o: jdmaster.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.hjdmerge.o: jdmerge.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.hjdphuff.o: jdphuff.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdhuff.hjdpostct.o: jdpostct.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.hjdsample.o: jdsample.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.hjdtrans.o: jdtrans.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.hjerror.o: jerror.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jversion.h jerror.hjfdctflt.o: jfdctflt.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.hjfdctfst.o: jfdctfst.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.hjfdctint.o: jfdctint.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.hjidctflt.o: jidctflt.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.hjidctfst.o: jidctfst.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.hjidctint.o: jidctint.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.hjidctred.o: jidctred.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jdct.hjquant1.o: jquant1.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.hjquant2.o: jquant2.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.hjutils.o: jutils.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.hjmemmgr.o: jmemmgr.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jmemsys.hjmemansi.o: jmemansi.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jmemsys.hjmemname.o: jmemname.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jmemsys.hjmemnobs.o: jmemnobs.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jmemsys.hjmemdos.o: jmemdos.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jmemsys.hjmemmac.o: jmemmac.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h jmemsys.hcjpeg.o: cjpeg.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h jversion.hdjpeg.o: djpeg.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h jversion.hjpegtran.o: jpegtran.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h transupp.h jversion.hrdjpgcom.o: rdjpgcom.c jinclude.h jconfig.hwrjpgcom.o: wrjpgcom.c jinclude.h jconfig.hcdjpeg.o: cdjpeg.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.hrdcolmap.o: rdcolmap.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.hrdswitch.o: rdswitch.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.htransupp.o: transupp.c jinclude.h jconfig.h jpeglib.h jmorecfg.h jpegint.h jerror.h transupp.hrdppm.o: rdppm.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.hwrppm.o: wrppm.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.hrdgif.o: rdgif.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.hwrgif.o: wrgif.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.hrdtarga.o: rdtarga.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.hwrtarga.o: wrtarga.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.hrdbmp.o: rdbmp.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.hwrbmp.o: wrbmp.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.hrdrle.o: rdrle.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.hwrrle.o: wrrle.c cdjpeg.h jinclude.h jconfig.h jpeglib.h jmorecfg.h jerror.h cderror.h

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产精品成人免费在线| 偷拍自拍另类欧美| 日韩精品一二三区| 成人精品鲁一区一区二区| 欧美日韩一级黄| 中文字幕在线不卡一区 | 欧美日韩激情一区二区三区| 日韩精品资源二区在线| 国产精品美女久久久久aⅴ | 久久成人免费网| 色吧成人激情小说| 国产婷婷色一区二区三区在线| 亚洲成人资源网| 91首页免费视频| 欧美激情艳妇裸体舞| 精品在线观看免费| 69av一区二区三区| 午夜一区二区三区在线观看| 白白色 亚洲乱淫| 亚洲国产精品成人久久综合一区| 麻豆高清免费国产一区| 欧美视频中文一区二区三区在线观看| 国产精品乱码一区二区三区软件| 久久国产乱子精品免费女| 欧美人妇做爰xxxⅹ性高电影| 亚洲精品欧美二区三区中文字幕| 不卡av在线免费观看| 国产精品乱人伦中文| 成人亚洲精品久久久久软件| 久久久电影一区二区三区| 国产精品小仙女| 久久精品人人做人人爽97| 国产综合久久久久久鬼色| 精品处破学生在线二十三| 精品综合久久久久久8888| 精品av久久707| 韩国一区二区在线观看| 国产无一区二区| 成人一区二区三区中文字幕| 国产精品入口麻豆九色| 99久久er热在这里只有精品66| 成人欧美一区二区三区视频网页 | 国产欧美综合在线| 成人免费视频一区| 亚洲视频小说图片| 欧美亚洲精品一区| 婷婷亚洲久悠悠色悠在线播放| 337p亚洲精品色噜噜| 久久99久久久久久久久久久| 精品欧美一区二区三区精品久久 | 成人免费看片app下载| 国产精品女人毛片| 一本色道久久综合亚洲91| 一区二区三区四区中文字幕| 欧美日韩三级视频| 国产一区二区三区最好精华液| 精品粉嫩超白一线天av| 丁香天五香天堂综合| 亚洲一级二级在线| 精品女同一区二区| 91麻豆国产自产在线观看| 亚洲bt欧美bt精品777| 久久久久久久久久久久电影| 不卡的av网站| 日本成人在线视频网站| 欧美国产日韩a欧美在线观看| 97精品久久久午夜一区二区三区| 亚洲国产精品精华液网站| 精品久久国产老人久久综合| 99精品国产热久久91蜜凸| 五月激情综合网| 国产日产欧美精品一区二区三区| 在线观看91精品国产入口| 激情欧美日韩一区二区| 一区二区三区精密机械公司| 精品1区2区在线观看| 在线观看免费亚洲| 国产福利91精品一区| 亚洲国产成人高清精品| 国产亚洲欧美激情| 欧美视频日韩视频| 成人黄色片在线观看| 男女男精品视频网| 亚洲日本va在线观看| 久久精品视频一区二区| 在线播放91灌醉迷j高跟美女| 成人av动漫在线| 另类小说图片综合网| 一区二区三区中文免费| 中文字幕乱码久久午夜不卡 | 欧美日韩亚洲丝袜制服| 懂色一区二区三区免费观看| 日本伊人精品一区二区三区观看方式| 国产精品久久综合| 国产三级欧美三级| 日韩精品在线网站| 欧美一区二区免费视频| 欧美日韩一区 二区 三区 久久精品| 成人高清视频在线| 国产精品亚洲午夜一区二区三区| 天天综合日日夜夜精品| 亚洲韩国一区二区三区| 曰韩精品一区二区| 亚洲欧美成aⅴ人在线观看| 中文字幕的久久| 国产日韩欧美精品在线| 久久亚洲二区三区| 久久久久久免费网| 久久先锋影音av鲁色资源网| 精品国产第一区二区三区观看体验| 欧美精选一区二区| 宅男在线国产精品| 欧美精品在欧美一区二区少妇| 欧美无砖砖区免费| 欧美性猛交xxxxxxxx| 欧美日韩国产另类一区| 欧美日韩亚洲综合一区二区三区| 在线视频欧美区| 一道本成人在线| 欧美色偷偷大香| 5月丁香婷婷综合| 欧美一卡二卡在线观看| 日韩一区二区中文字幕| 欧美精品一区二区在线播放| 精品av久久707| 国产日韩精品视频一区| 亚洲国产精品传媒在线观看| 日韩一区欧美小说| 一区二区国产视频| 亚洲香肠在线观看| 奇米精品一区二区三区在线观看| 久久99精品久久久久| 图片区小说区国产精品视频| 秋霞国产午夜精品免费视频| 久草这里只有精品视频| 成人黄色一级视频| 欧美三级资源在线| 日韩免费电影一区| 国产精品理伦片| 亚洲福中文字幕伊人影院| 另类小说图片综合网| 国产成人综合在线| 91亚洲国产成人精品一区二区三 | 欧美吻胸吃奶大尺度电影| 欧美一级黄色大片| 欧美韩国日本一区| 性感美女久久精品| 国精产品一区一区三区mba视频| 粉嫩绯色av一区二区在线观看| 91视频国产观看| 日韩一级在线观看| 综合久久久久久| 男女性色大片免费观看一区二区 | 国产精品美女视频| 爽好久久久欧美精品| 国产在线精品一区二区夜色| av一区二区三区四区| 91精品国产综合久久国产大片| 欧美国产丝袜视频| 日韩电影一区二区三区| 成人综合婷婷国产精品久久免费| 欧美亚州韩日在线看免费版国语版| 日韩一区二区视频| 一区二区在线观看免费| 国产美女主播视频一区| 欧美久久久久久久久| 中文字幕在线观看一区二区| 久久精品国产秦先生| 欧美亚洲动漫另类| 国产精品色哟哟| 国产乱码精品一品二品| 在线电影国产精品| 一区二区视频免费在线观看| 国产在线一区二区| 91精品国产麻豆| 亚洲综合色婷婷| 色综合天天天天做夜夜夜夜做| 中文字幕免费不卡在线| 午夜欧美电影在线观看| 成人精品在线视频观看| 久久久亚洲高清| 蜜桃一区二区三区在线观看| 一本色道亚洲精品aⅴ| 国产精品久久毛片av大全日韩| 老汉av免费一区二区三区| 欧美久久久久免费| 亚洲成人三级小说| 91极品视觉盛宴| 亚洲同性同志一二三专区| 风间由美一区二区三区在线观看| 日韩女优视频免费观看| 视频在线观看一区二区三区| 精品视频一区二区三区免费| 亚洲欧美一区二区不卡| 99精品国产一区二区三区不卡| 欧美国产一区二区| 菠萝蜜视频在线观看一区| 久久久久久久久久久久久久久99| 国产在线一区二区综合免费视频| 精品国产一区二区三区久久久蜜月 |