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

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

?? 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

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲摸摸操操av| 免费国产亚洲视频| 亚洲精品在线观看视频| 91香蕉视频污在线| 国产精品影视天天线| 亚洲成av人片在线观看无码| 久久久精品天堂| 91精品国产综合久久精品| 91女神在线视频| 国产激情视频一区二区在线观看 | 国产麻豆精品在线观看| 亚洲国产日韩精品| 亚洲人成精品久久久久| 久久先锋影音av| 91精品国产一区二区三区| 日本道精品一区二区三区| 懂色av中文字幕一区二区三区| 日韩av在线发布| 亚洲一级二级三级| 亚洲柠檬福利资源导航| 久久久久成人黄色影片| 精品国精品自拍自在线| 日韩欧美激情四射| 9191国产精品| 日本一区二区电影| 久久美女艺术照精彩视频福利播放 | 欧美日韩1区2区| 91视频精品在这里| proumb性欧美在线观看| 国产高清精品网站| 国产精品99久久久久| 久久草av在线| 麻豆一区二区99久久久久| 视频一区视频二区在线观看| 一区二区三区免费网站| 亚洲欧美日韩国产另类专区| 亚洲欧洲三级电影| 中文字幕一区二区三区精华液| 国产日韩av一区二区| 久久久久久影视| 久久精品亚洲国产奇米99| 久久久不卡网国产精品二区| 26uuu亚洲| 精品福利在线导航| 久久亚洲一区二区三区四区| 亚洲精品一区二区三区香蕉| 26uuu欧美| 国产偷国产偷亚洲高清人白洁| 久久久久久一二三区| 国产日韩在线不卡| 自拍偷拍亚洲激情| 亚洲日本欧美天堂| 亚洲一区二区3| 日韩中文字幕不卡| 精品在线观看免费| 国产精品亚洲综合一区在线观看| 国产高清不卡一区| 91丝袜国产在线播放| 欧美中文一区二区三区| 日韩一区二区三| 久久午夜老司机| 国产精品午夜免费| 亚洲资源在线观看| 首页国产欧美日韩丝袜| 久久99久久99精品免视看婷婷 | 在线这里只有精品| 欧美精品一二三区| 精品国产百合女同互慰| 国产精品久久精品日日| 夜夜揉揉日日人人青青一国产精品| 亚洲国产精品久久艾草纯爱| 麻豆一区二区99久久久久| 高清不卡在线观看| 在线看日韩精品电影| 日韩区在线观看| 日本一区二区不卡视频| 亚洲国产精品天堂| 国产资源在线一区| 色婷婷综合久久久中文字幕| 日韩视频免费直播| 欧美激情一区三区| 三级在线观看一区二区| 成人免费的视频| 欧美一二三四区在线| 亚洲国产精华液网站w| 婷婷久久综合九色国产成人 | 精品一区二区综合| 91色综合久久久久婷婷| 正在播放一区二区| 国产精品美女视频| 麻豆精品视频在线观看免费| 一本一本久久a久久精品综合麻豆| 欧美肥胖老妇做爰| 国产精品欧美一级免费| 视频一区在线视频| 色妹子一区二区| 久久久欧美精品sm网站| 丝袜脚交一区二区| 91亚洲精品久久久蜜桃网站| 日韩欧美电影一区| 亚洲一区二区在线观看视频| 丁香婷婷综合色啪| 日韩一级黄色片| 亚洲最新视频在线观看| 成人综合婷婷国产精品久久 | 色噜噜狠狠色综合中国| 2020国产精品| 免播放器亚洲一区| 欧美在线观看一区| 国产精品色呦呦| 精品在线视频一区| 日韩一级完整毛片| 午夜精品影院在线观看| 一本一道久久a久久精品综合蜜臀| 久久精品欧美日韩| 久草在线在线精品观看| 欧美精品久久99| 亚洲综合在线视频| 97精品电影院| 国产精品全国免费观看高清 | 精品盗摄一区二区三区| 日韩av一区二区在线影视| 欧美在线视频全部完| 极品少妇一区二区| 亚洲电影在线播放| 精品欧美一区二区久久 | 成人短视频下载| 日韩欧美高清在线| 国产一区二区三区| 国产精品区一区二区三| 国产九色精品成人porny| 久久这里只有精品6| 国产精品天干天干在线综合| 视频一区二区三区入口| 欧美日韩国产片| 亚洲妇熟xx妇色黄| 精品视频在线免费观看| 亚洲久本草在线中文字幕| 97久久精品人人做人人爽| 最新日韩av在线| 99久久777色| 亚洲免费av观看| 欧亚一区二区三区| 亚洲一区二区三区视频在线播放| 色成人在线视频| 亚洲精品自拍动漫在线| 欧美亚洲一区二区在线观看| 一二三四社区欧美黄| 欧美精品久久一区| 美日韩黄色大片| 久久蜜臀精品av| bt欧美亚洲午夜电影天堂| 综合在线观看色| 在线亚洲欧美专区二区| 亚洲成人一区在线| 欧美大肚乱孕交hd孕妇| 国产.精品.日韩.另类.中文.在线.播放| 久久久亚洲精品石原莉奈| 成人18精品视频| 夜夜夜精品看看| 日韩欧美中文字幕公布| 国产福利一区二区三区| 国产精品久久久久久久岛一牛影视| 99麻豆久久久国产精品免费| 亚洲精品国产a久久久久久 | 国产激情一区二区三区四区| 国产精品理论片在线观看| 91福利国产成人精品照片| 香蕉久久一区二区不卡无毒影院| 日韩欧美亚洲国产另类| 懂色一区二区三区免费观看| 亚洲一二三四区不卡| 欧美成人性战久久| 成人app网站| 爽好多水快深点欧美视频| 日本一区二区免费在线| 欧美色国产精品| 精品亚洲porn| 亚洲欧美日韩系列| 日韩欧美视频在线| 91蜜桃网址入口| 毛片一区二区三区| 综合av第一页| 欧美成人精精品一区二区频| 99视频有精品| 狠狠色丁香婷婷综合久久片| 一区二区三区在线观看欧美 | 久久精品综合网| 欧美综合一区二区| 国产电影精品久久禁18| 午夜电影一区二区| 国产精品高潮呻吟久久| 欧美一区三区二区| 91官网在线免费观看| 国产乱子轮精品视频| 日韩精品国产欧美| 亚洲欧洲综合另类| 中文字幕精品在线不卡| 欧美videossexotv100| 欧美午夜精品理论片a级按摩|