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

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

?? makefile.ansi

?? QT 開發環境里面一個很重要的文件
?? 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一区二区三区免费野_久草精品视频
91国产福利在线| 久久久久久久综合| 日日夜夜精品免费视频| 欧美精品在线一区二区| 久久99国产乱子伦精品免费| 亚洲精品一区二区三区四区高清| 国产一区二区0| 亚洲色图20p| 2021国产精品久久精品| 粉嫩高潮美女一区二区三区| 亚洲一级片在线观看| 26uuu另类欧美亚洲曰本| 不卡的看片网站| 美国毛片一区二区| 亚洲黄网站在线观看| 久久久久久毛片| 欧美男人的天堂一二区| 成人国产电影网| 国内精品久久久久影院色| 亚洲综合色网站| 亚洲天堂精品在线观看| 欧美成人video| 欧美精品第1页| 777午夜精品视频在线播放| 成人免费毛片a| 成人视屏免费看| 国产成人免费视频网站高清观看视频| 免费观看在线综合| 久久超碰97中文字幕| 日韩极品在线观看| 日韩精品视频网| 亚洲欧美视频一区| 亚洲精品大片www| 亚洲精品中文字幕在线观看| 一区二区三区蜜桃| 日韩高清不卡一区二区| 日韩av一二三| 国产精品一区二区久激情瑜伽| 九九九精品视频| 豆国产96在线|亚洲| 91蝌蚪porny九色| 91精品综合久久久久久| 欧美大片一区二区| 欧美图区在线视频| 欧美午夜精品理论片a级按摩| 欧美这里有精品| 欧美卡1卡2卡| 国产精品免费网站在线观看| 亚洲精品国产精华液| 青青草国产成人99久久| 国产成人在线网站| 欧美日韩精品一区二区在线播放| 日韩午夜在线观看视频| 亚洲欧美自拍偷拍| 欧美一区二区私人影院日本| 成人听书哪个软件好| 88在线观看91蜜桃国自产| 国产日本亚洲高清| 日本aⅴ精品一区二区三区| aaa欧美大片| 久久久久久电影| 奇米精品一区二区三区在线观看| aa级大片欧美| 国产精品成人网| 国产精品一二三在| 久久免费国产精品| 蜜臀av性久久久久蜜臀av麻豆 | 91精品免费观看| 国产精品白丝在线| 激情综合网av| 欧美一级生活片| 日韩成人dvd| 欧美人xxxx| 久久99国内精品| 国产三级精品三级| av日韩在线网站| 精品国产一区二区精华| 精品国产精品网麻豆系列| 蜜臀av性久久久久av蜜臀妖精| 欧美一区二区三区免费| 日韩成人一级大片| 日韩欧美一区在线观看| 国产综合色视频| 国产精品久久久久毛片软件| 在线观看免费亚洲| 午夜天堂影视香蕉久久| 精品国产91亚洲一区二区三区婷婷| 久久成人免费网| 亚洲婷婷综合色高清在线| 在线观看亚洲a| 美女视频黄频大全不卡视频在线播放| 久久久久久电影| 日韩欧美高清一区| 99久久免费视频.com| 秋霞午夜鲁丝一区二区老狼| 日本一区二区三级电影在线观看 | 久久久青草青青国产亚洲免观| 国产一区二区精品久久91| 亚洲精品免费看| 日韩一区二区三区免费看| 97国产精品videossex| 奇米亚洲午夜久久精品| 亚洲欧洲国产日本综合| 精品国产91久久久久久久妲己| 欧美性生活影院| 色综合一个色综合| 99久久精品国产一区二区三区 | 国产精品小仙女| 日韩专区在线视频| 性久久久久久久久久久久| 亚洲日本韩国一区| 中文字幕字幕中文在线中不卡视频| 久久夜色精品国产欧美乱极品| 欧美va亚洲va| 日韩视频永久免费| 欧美一级高清片在线观看| 69成人精品免费视频| 欧美日韩三级一区二区| 欧美伊人久久大香线蕉综合69| 91福利精品第一导航| 欧美午夜精品久久久久久超碰| 欧美亚洲国产一区二区三区va | 欧美日韩国产片| 7777精品伊人久久久大香线蕉的| 欧美午夜精品免费| 精品免费视频.| 国产丝袜在线精品| 亚洲人123区| 乱一区二区av| 成人国产精品视频| 精品国产乱子伦一区| 国产嫩草影院久久久久| 一区二区三区色| 美国十次综合导航| 成人av在线资源网| 欧美精品乱码久久久久久按摩| 亚洲精品一线二线三线| 亚洲欧美日韩在线| 国产专区综合网| 欧美午夜寂寞影院| 国产精品初高中害羞小美女文| 亚洲一区国产视频| 国产成人福利片| 日韩午夜精品视频| 久久电影网站中文字幕 | 欧美日韩一区久久| 欧美乱熟臀69xxxxxx| 欧美一区二区三区视频免费| 91精品国产综合久久精品麻豆| 欧美日韩第一区日日骚| 欧美成人精品福利| 日本一区二区三区免费乱视频| 久久久久一区二区三区四区| 亚洲成人免费视| 欧洲激情一区二区| 亚洲最新在线观看| 91在线观看一区二区| 久久精品在线免费观看| 国产精品一品二品| 51精品视频一区二区三区| 一区二区三区国产豹纹内裤在线| 国产精品888| 欧美国产一区在线| 高清成人在线观看| 中文字幕免费不卡| 北条麻妃一区二区三区| 综合色中文字幕| 欧美无乱码久久久免费午夜一区 | 欧美日本一区二区| 久久成人羞羞网站| 中文字幕一区二区日韩精品绯色| 成人av片在线观看| 亚洲aaa精品| 久久精品亚洲国产奇米99| 99久久综合精品| 亚洲成人综合视频| 日韩一区二区三区观看| 国内一区二区视频| 一区二区日韩电影| 久久一留热品黄| 欧美日韩一区二区三区视频| 精品一区二区免费视频| 亚洲精品成人在线| 精品少妇一区二区三区视频免付费 | 高清不卡一区二区| 亚洲va欧美va天堂v国产综合| 国产精品网站在线| 日韩一区二区视频在线观看| 一本大道久久a久久综合| 麻豆国产欧美日韩综合精品二区| 亚洲精品少妇30p| 亚洲国产高清不卡| 国产婷婷精品av在线| 日韩午夜中文字幕| 日韩午夜激情av| 3d成人动漫网站| 欧美日韩一区 二区 三区 久久精品| 国产不卡在线播放| 成人免费毛片app| 成人的网站免费观看|