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

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

?? makefile.ansi

?? tightvnc 1.3.9 的源代碼
?? ANSI
字號:
# 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一区二区三区免费野_久草精品视频
色婷婷综合久久久中文一区二区 | 日韩精品一区在线观看| 成人h动漫精品| 国产美女在线观看一区| 蜜桃视频第一区免费观看| 午夜精品久久久久久久| 亚洲无线码一区二区三区| 亚洲成人福利片| 同产精品九九九| 蜜桃视频一区二区三区| 九九九精品视频| 国产呦萝稀缺另类资源| 不卡av免费在线观看| 91丝袜高跟美女视频| 在线观看免费一区| 91精品国产91热久久久做人人 | 99久久伊人网影院| 色综合视频在线观看| 在线观看欧美黄色| 日韩精品自拍偷拍| 国产精品久久看| 亚洲成a人在线观看| 人禽交欧美网站| 国产乱人伦精品一区二区在线观看| 国产91精品免费| 欧美色男人天堂| wwwwww.欧美系列| 成人欧美一区二区三区1314| 亚洲观看高清完整版在线观看| 日韩高清一区在线| 韩国女主播成人在线| 日本韩国一区二区| 久久综合给合久久狠狠狠97色69| 亚洲欧洲av另类| 日本美女视频一区二区| av电影一区二区| 日韩精品一区二区三区在线播放 | 日韩精品一区二区三区中文精品| 国产精品国产三级国产有无不卡 | 欧美少妇一区二区| 欧美大片免费久久精品三p | 视频一区国产视频| 丰满少妇在线播放bd日韩电影| 欧美做爰猛烈大尺度电影无法无天| 欧美一级精品在线| 亚洲精品国产一区二区精华液 | 日韩视频在线观看一区二区| 亚洲午夜电影在线观看| 亚洲成人7777| 久久国产福利国产秒拍| 在线观看一区日韩| 日本一区二区三区在线观看| 午夜天堂影视香蕉久久| 色综合色综合色综合色综合色综合 | 国产精品欧美极品| 激情综合网av| 日韩视频一区二区三区| 亚洲一区二区不卡免费| 成人国产免费视频| 久久伊99综合婷婷久久伊| 日本视频一区二区| 欧美美女激情18p| 一区二区三区欧美激情| 91原创在线视频| 国产精品丝袜久久久久久app| 国产一区二区三区免费看| 精品欧美乱码久久久久久| 免费人成精品欧美精品 | 麻豆精品视频在线观看| 91精品国产入口在线| 婷婷综合另类小说色区| 欧美日韩国产不卡| 天堂在线亚洲视频| 9191成人精品久久| 青青国产91久久久久久| 欧美一区二区三区视频在线观看| 午夜a成v人精品| 欧美日韩一级黄| 日本一不卡视频| 日韩欧美一区中文| 国产综合久久久久久久久久久久| 日韩一区二区三免费高清| 蜜桃久久精品一区二区| 2017欧美狠狠色| 国产高清在线观看免费不卡| 国产欧美日韩视频一区二区| eeuss鲁一区二区三区| 1区2区3区国产精品| 欧美亚一区二区| 日韩高清电影一区| 久久综合精品国产一区二区三区| 丁香激情综合五月| 一区二区在线观看免费视频播放| 欧美亚洲综合一区| 日韩av二区在线播放| 国产日韩欧美不卡| 色婷婷精品大在线视频| 日韩成人av影视| 国产日韩欧美激情| 欧美猛男男办公室激情| 激情欧美一区二区| 亚洲欧美日韩系列| 精品裸体舞一区二区三区| 99久久久免费精品国产一区二区| 亚洲一区二区影院| 国产三级一区二区三区| 91久久精品一区二区三| 日本美女视频一区二区| 中文字幕亚洲区| 日韩欧美中文字幕公布| 91无套直看片红桃| 激情综合网av| 亚洲mv大片欧洲mv大片精品| 久久精品视频网| 欧美精品久久一区| av在线播放不卡| 国产一区二区三区高清播放| 亚洲精品成人在线| 国产亚洲精久久久久久| 91精品视频网| 色狠狠综合天天综合综合| 国内不卡的二区三区中文字幕 | 国产在线日韩欧美| 午夜精品一区在线观看| 国产精品理伦片| 2023国产精品自拍| 91精品国产手机| 欧美亚洲综合一区| 色综合久久中文综合久久97| 国产精品影视网| 男男视频亚洲欧美| 婷婷中文字幕一区三区| 一区二区在线观看视频在线观看| 欧美韩日一区二区三区四区| 欧美变态tickling挠脚心| 欧美日韩一区二区在线观看| 91美女片黄在线观看91美女| 丁香婷婷综合五月| 国产乱一区二区| 国产呦精品一区二区三区网站| 日韩精品电影一区亚洲| 亚洲福利一二三区| 亚洲美女一区二区三区| 中文字幕日本乱码精品影院| 国产日韩在线不卡| 久久久精品欧美丰满| 久久这里都是精品| 日本一区二区三区在线不卡| 国产日产欧美一区二区视频| 久久久久99精品国产片| 国产午夜精品福利| 国产精品日产欧美久久久久| 国产精品国产三级国产三级人妇| 国产精品美女久久久久久| 欧美激情一区二区三区蜜桃视频| 欧美激情综合五月色丁香小说| 国产精品视频一二| 亚洲精品美腿丝袜| 亚洲国产日韩a在线播放| 亚洲成a人v欧美综合天堂下载| 午夜不卡av免费| 激情欧美一区二区三区在线观看| 国产精华液一区二区三区| 懂色一区二区三区免费观看| a4yy欧美一区二区三区| 欧美揉bbbbb揉bbbbb| 91精品在线一区二区| 国产日韩欧美a| 一区二区三区欧美视频| 日韩精品三区四区| 国内精品视频666| 91麻豆精东视频| 欧美一区二区在线看| xnxx国产精品| 国产精品素人一区二区| 亚洲国产日韩精品| 国产精品1024久久| 在线一区二区三区| 精品成人免费观看| 中文字幕中文字幕一区| 日韩中文字幕不卡| 国产成a人亚洲精品| 欧美日韩精品一区二区天天拍小说| 日韩视频在线永久播放| 自拍偷在线精品自拍偷无码专区| 日本欧美韩国一区三区| 成人av电影免费观看| 7777精品伊人久久久大香线蕉完整版 | 不卡视频一二三四| 制服视频三区第一页精品| 日本一区二区成人| 欧美a级理论片| 91久久国产最好的精华液| 精品久久久久久久人人人人传媒| 成人免费在线播放视频| 激情久久五月天| 欧美丝袜丝交足nylons| 国产精品网站导航| 国内精品嫩模私拍在线| 911精品国产一区二区在线|