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

? 歡迎來(lái)到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? makefile.ansi

?? linux下的一款播放器
?? ANSI
字號(hào):
# 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

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
丝袜美腿成人在线| 欧美午夜精品免费| 久久99精品国产麻豆不卡| 日韩精品成人一区二区三区| 亚洲成人动漫在线免费观看| 亚洲国产毛片aaaaa无费看 | 久久久久久综合| 精品国产免费一区二区三区四区| 精品蜜桃在线看| 久久久亚洲欧洲日产国码αv| 久久九九全国免费| 国产精品少妇自拍| 国产精品久久久久aaaa樱花| 亚洲欧美日韩一区二区| 一区二区视频在线| 亚洲图片欧美视频| 免费高清在线一区| 黄色精品一二区| 国产东北露脸精品视频| 99久久er热在这里只有精品66| 91网站黄www| 欧美日韩免费一区二区三区视频| 欧美精品v国产精品v日韩精品 | 国产亚洲福利社区一区| 欧美激情在线观看视频免费| 亚洲欧美韩国综合色| 亚洲va国产天堂va久久en| 美女视频网站久久| 欧美亚洲国产一区二区三区| 欧美日韩小视频| 欧美大片在线观看| 欧美韩日一区二区三区| 亚洲欧美日韩一区二区| 日韩高清一区二区| 国产精品影视天天线| 色老汉一区二区三区| 69堂亚洲精品首页| 久久亚洲精精品中文字幕早川悠里| 国产精品天天看| 亚洲成av人片一区二区三区| 韩国中文字幕2020精品| 91尤物视频在线观看| 91精品中文字幕一区二区三区| 久久久青草青青国产亚洲免观| 亚洲欧美日韩在线不卡| 蜜桃视频一区二区三区| 波多野结衣精品在线| 欧美日韩国产成人在线91| 久久久久久久久免费| 亚洲一区二区在线观看视频| 国产在线精品一区二区| 欧美午夜精品久久久| 久久女同互慰一区二区三区| 一区二区三区**美女毛片| 精品在线一区二区三区| 色婷婷一区二区| 久久夜色精品一区| 亚洲国产综合人成综合网站| 国产成人精品免费| 91超碰这里只有精品国产| 国产精品久久久久久久久快鸭| 秋霞av亚洲一区二区三| 色婷婷精品久久二区二区蜜臂av | 中文字幕高清不卡| 久久精品噜噜噜成人88aⅴ| 91免费在线播放| 久久免费精品国产久精品久久久久 | 国产精品国产馆在线真实露脸| 五月综合激情日本mⅴ| 成人短视频下载| 精品女同一区二区| a亚洲天堂av| 欧美va在线播放| 亚洲h在线观看| 暴力调教一区二区三区| 337p粉嫩大胆噜噜噜噜噜91av| 亚洲成人在线观看视频| 96av麻豆蜜桃一区二区| 国产日产欧美精品一区二区三区| 日韩电影免费在线看| 91国产视频在线观看| 亚洲欧美在线aaa| 国产精品一区专区| 欧美电影免费观看高清完整版 | 性做久久久久久免费观看欧美| 99国产精品国产精品久久| 久久久电影一区二区三区| 麻豆久久一区二区| 欧美一区二区视频在线观看2022| 亚洲香肠在线观看| 欧美影视一区在线| 一区二区三区色| 色94色欧美sute亚洲13| 亚洲日韩欧美一区二区在线| av电影在线观看一区| 国产精品视频一二三区| 丰满岳乱妇一区二区三区| 久久蜜桃一区二区| 国产真实乱子伦精品视频| 日韩亚洲欧美一区| 精品亚洲欧美一区| 精品国产一区二区亚洲人成毛片| 麻豆精品蜜桃视频网站| 91精品国产综合久久久久久久久久| 亚洲一区二区精品3399| 欧美视频一二三区| 三级在线观看一区二区| 67194成人在线观看| 日韩电影免费一区| 欧美videos中文字幕| 黑人精品欧美一区二区蜜桃 | 久久99精品久久久久婷婷| 欧美sm极限捆绑bd| 国产乱妇无码大片在线观看| 国产欧美精品区一区二区三区| 丁香天五香天堂综合| 国产精品精品国产色婷婷| 色综合久久久久综合99| 亚洲成a人片在线不卡一二三区| 欧美日韩国产电影| 精品一区二区三区在线观看国产 | 亚洲午夜成aⅴ人片| 在线不卡的av| 国产老女人精品毛片久久| 国产精品久久久久久久岛一牛影视| 99视频国产精品| 亚洲电影一区二区三区| 欧美一区二区三区精品| 国产麻豆成人精品| 亚洲免费伊人电影| 91精品国产综合久久久久| 国内久久婷婷综合| 亚洲欧洲一区二区三区| 欧美亚男人的天堂| 激情六月婷婷久久| 亚洲欧洲综合另类| 91精品啪在线观看国产60岁| 国产经典欧美精品| 亚洲综合久久av| 精品国产乱码久久| 26uuu亚洲| jlzzjlzz亚洲日本少妇| 五月天欧美精品| 久久久久久久久久久久电影| 色噜噜狠狠成人中文综合| 麻豆国产91在线播放| 中文字幕亚洲一区二区va在线| 欧美性xxxxxxxx| 国产精品91xxx| 夜夜精品浪潮av一区二区三区| 欧美va天堂va视频va在线| 91欧美一区二区| 免费在线看成人av| 亚洲欧美一区二区三区极速播放 | 亚洲风情在线资源站| 久久久91精品国产一区二区精品| 欧洲另类一二三四区| 国产一区二区精品久久91| 亚洲线精品一区二区三区八戒| 久久精品免费在线观看| 欧美日韩不卡视频| 不卡一区在线观看| 久久国产剧场电影| 午夜电影网亚洲视频| 1024精品合集| 日韩精品专区在线| 欧美性淫爽ww久久久久无| 风间由美一区二区av101| 奇米影视一区二区三区小说| 一区二区三区在线观看视频 | 久久91精品国产91久久小草| 亚洲精品免费在线| 欧美韩国日本综合| 精品日韩在线观看| 69堂精品视频| 欧美婷婷六月丁香综合色| 波多野结衣一区二区三区 | 欧美岛国在线观看| 欧美色区777第一页| 99riav久久精品riav| 国产一区二区不卡| 六月婷婷色综合| 视频在线观看91| 亚洲国产va精品久久久不卡综合| ...中文天堂在线一区| 久久久精品国产免大香伊| 日韩女优av电影在线观看| 欧美一区二区三区视频在线| 欧美日韩国产中文| 91行情网站电视在线观看高清版| 丁香桃色午夜亚洲一区二区三区| 国模套图日韩精品一区二区| 日本亚洲欧美天堂免费| 性欧美疯狂xxxxbbbb| 亚洲国产欧美在线| 国产成人午夜视频| 国产一区二区免费看| 国产一区激情在线| 国产麻豆91精品| 国产精品影视在线观看|