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

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

?? main.mk

?? sqlite庫
?? MK
?? 第 1 頁 / 共 2 頁
字號:
################################################################################ The following macros should be defined before this script is# invoked:## TOP              The toplevel directory of the source tree.  This is the#                  directory that contains this "Makefile.in" and the#                  "configure.in" script.## BCC              C Compiler and options for use in building executables that#                  will run on the platform that is doing the build.## USLEEP           If the target operating system supports the "usleep()" system#                  call, then define the HAVE_USLEEP macro for all C modules.## THREADSAFE       If you want the SQLite library to be safe for use within a #                  multi-threaded program, then define the following macro#                  appropriately:## THREADLIB        Specify any extra linker options needed to make the library#                  thread safe## OPTS             Extra compiler command-line options.## EXE              The suffix to add to executable files.  ".exe" for windows#                  and "" for Unix.## TCC              C Compiler and options for use in building executables that #                  will run on the target platform.  This is usually the same#                  as BCC, unless you are cross-compiling.## AR               Tools used to build a static library.# RANLIB## TCL_FLAGS        Extra compiler options needed for programs that use the#                  TCL library.## LIBTCL           Linker options needed to link against the TCL library.## READLINE_FLAGS   Compiler options needed for programs that use the#                  readline() library.## LIBREADLINE      Linker options needed by programs using readline() must#                  link against.## NAWK             Nawk compatible awk program.  Older (obsolete?) solaris#                  systems need this to avoid using the original AT&T AWK.## Once the macros above are defined, the rest of this make script will# build the SQLite library and testing tools.################################################################################# This is how we compile#TCCX = $(TCC) $(OPTS) $(THREADSAFE) $(USLEEP) -I. -I$(TOP)/src# Object files for the SQLite library.#LIBOBJ+= alter.o analyze.o attach.o auth.o btree.o build.o \         callback.o complete.o date.o delete.o \         expr.o func.o hash.o insert.o \         main.o opcodes.o os.o os_unix.o os_win.o \         pager.o parse.o pragma.o prepare.o printf.o random.o \         select.o table.o tclsqlite.o tokenize.o trigger.o \         update.o util.o vacuum.o \         vdbe.o vdbeapi.o vdbeaux.o vdbefifo.o vdbemem.o \         where.o utf.o legacy.o# All of the source code files.#SRC = \  $(TOP)/src/alter.c \  $(TOP)/src/analyze.c \  $(TOP)/src/attach.c \  $(TOP)/src/auth.c \  $(TOP)/src/btree.c \  $(TOP)/src/btree.h \  $(TOP)/src/build.c \  $(TOP)/src/callback.c \  $(TOP)/src/complete.c \  $(TOP)/src/date.c \  $(TOP)/src/delete.c \  $(TOP)/src/expr.c \  $(TOP)/src/func.c \  $(TOP)/src/hash.c \  $(TOP)/src/hash.h \  $(TOP)/src/insert.c \  $(TOP)/src/legacy.c \  $(TOP)/src/main.c \  $(TOP)/src/os.c \  $(TOP)/src/os_unix.c \  $(TOP)/src/os_win.c \  $(TOP)/src/pager.c \  $(TOP)/src/pager.h \  $(TOP)/src/parse.y \  $(TOP)/src/pragma.c \  $(TOP)/src/prepare.c \  $(TOP)/src/printf.c \  $(TOP)/src/random.c \  $(TOP)/src/select.c \  $(TOP)/src/shell.c \  $(TOP)/src/sqlite.h.in \  $(TOP)/src/sqliteInt.h \  $(TOP)/src/table.c \  $(TOP)/src/tclsqlite.c \  $(TOP)/src/tokenize.c \  $(TOP)/src/trigger.c \  $(TOP)/src/utf.c \  $(TOP)/src/update.c \  $(TOP)/src/util.c \  $(TOP)/src/vacuum.c \  $(TOP)/src/vdbe.c \  $(TOP)/src/vdbe.h \  $(TOP)/src/vdbeapi.c \  $(TOP)/src/vdbeaux.c \  $(TOP)/src/vdbefifo.c \  $(TOP)/src/vdbemem.c \  $(TOP)/src/vdbeInt.h \  $(TOP)/src/where.c# Source code to the test files.#TESTSRC = \  $(TOP)/src/btree.c \  $(TOP)/src/date.c \  $(TOP)/src/func.c \  $(TOP)/src/os.c \  $(TOP)/src/os_unix.c \  $(TOP)/src/os_win.c \  $(TOP)/src/pager.c \  $(TOP)/src/pragma.c \  $(TOP)/src/printf.c \  $(TOP)/src/test1.c \  $(TOP)/src/test2.c \  $(TOP)/src/test3.c \  $(TOP)/src/test4.c \  $(TOP)/src/test5.c \  $(TOP)/src/test6.c \  $(TOP)/src/test7.c \  $(TOP)/src/test_async.c \  $(TOP)/src/test_md5.c \  $(TOP)/src/test_server.c \  $(TOP)/src/utf.c \  $(TOP)/src/util.c \  $(TOP)/src/vdbe.c \  $(TOP)/src/where.c# Header files used by all library source files.#HDR = \   sqlite3.h  \   $(TOP)/src/btree.h \   $(TOP)/src/hash.h \   opcodes.h \   $(TOP)/src/os.h \   $(TOP)/src/os_common.h \   $(TOP)/src/sqliteInt.h  \   $(TOP)/src/vdbe.h \   parse.h# Header files used by the VDBE submodule#VDBEHDR = \   $(HDR) \   $(TOP)/src/vdbeInt.h# This is the default Makefile target.  The objects listed here# are what get build when you type just "make" with no arguments.#all:	sqlite3.h libsqlite3.a sqlite3$(EXE)# Generate the file "last_change" which contains the date of change# of the most recently modified source code file#last_change:	$(SRC)	cat $(SRC) | grep '$$Id: ' | sort +4 | tail -1 \          | $(NAWK) '{print $$5,$$6}' >last_changelibsqlite3.a:	$(LIBOBJ)	$(AR) libsqlite3.a $(LIBOBJ)	$(RANLIB) libsqlite3.asqlite3$(EXE):	$(TOP)/src/shell.c libsqlite3.a sqlite3.h	$(TCCX) $(READLINE_FLAGS) -o sqlite3$(EXE) $(TOP)/src/shell.c \		libsqlite3.a $(LIBREADLINE) $(TLIBS) $(THREADLIB)objects: $(LIBOBJ_ORIG)# This target creates a directory named "tsrc" and fills it with# copies of all of the C source code and header files needed to# build on the target system.  Some of the C source code and header# files are automatically generated.  This target takes care of# all that automatic generation.#target_source:	$(SRC) $(VDBEHDR) opcodes.c keywordhash.h	rm -rf tsrc	mkdir tsrc	cp $(SRC) $(VDBEHDR) tsrc	rm tsrc/sqlite.h.in tsrc/parse.y	cp parse.c opcodes.c keywordhash.h tsrc	cp $(TOP)/sqlite3.def tsrc# Rules to build the LEMON compiler generator#lemon:	$(TOP)/tool/lemon.c $(TOP)/tool/lempar.c	$(BCC) -o lemon $(TOP)/tool/lemon.c	cp $(TOP)/tool/lempar.c .# Rules to build individual files#alter.o:	$(TOP)/src/alter.c $(HDR)	$(TCCX) -c $(TOP)/src/alter.canalyze.o:	$(TOP)/src/analyze.c $(HDR)	$(TCCX) -c $(TOP)/src/analyze.cattach.o:	$(TOP)/src/attach.c $(HDR)	$(TCCX) -c $(TOP)/src/attach.cauth.o:	$(TOP)/src/auth.c $(HDR)	$(TCCX) -c $(TOP)/src/auth.cbtree.o:	$(TOP)/src/btree.c $(HDR) $(TOP)/src/pager.h	$(TCCX) -c $(TOP)/src/btree.cbuild.o:	$(TOP)/src/build.c $(HDR)	$(TCCX) -c $(TOP)/src/build.ccallback.o:	$(TOP)/src/callback.c $(HDR)	$(TCCX) -c $(TOP)/src/callback.ccomplete.o:	$(TOP)/src/complete.c $(HDR)	$(TCCX) -c $(TOP)/src/complete.cdate.o:	$(TOP)/src/date.c $(HDR)	$(TCCX) -c $(TOP)/src/date.cdelete.o:	$(TOP)/src/delete.c $(HDR)	$(TCCX) -c $(TOP)/src/delete.cexpr.o:	$(TOP)/src/expr.c $(HDR)	$(TCCX) -c $(TOP)/src/expr.cfunc.o:	$(TOP)/src/func.c $(HDR)	$(TCCX) -c $(TOP)/src/func.chash.o:	$(TOP)/src/hash.c $(HDR)	$(TCCX) -c $(TOP)/src/hash.cinsert.o:	$(TOP)/src/insert.c $(HDR)	$(TCCX) -c $(TOP)/src/insert.clegacy.o:	$(TOP)/src/legacy.c $(HDR)	$(TCCX) -c $(TOP)/src/legacy.cmain.o:	$(TOP)/src/main.c $(HDR)	$(TCCX) -c $(TOP)/src/main.cpager.o:	$(TOP)/src/pager.c $(HDR) $(TOP)/src/pager.h	$(TCCX) -c $(TOP)/src/pager.copcodes.o:	opcodes.c	$(TCCX) -c opcodes.copcodes.c:	opcodes.h $(TOP)/mkopcodec.awk	sort -n -b +2 opcodes.h | $(NAWK) -f $(TOP)/mkopcodec.awk >opcodes.copcodes.h:	parse.h $(TOP)/src/vdbe.c $(TOP)/mkopcodeh.awk	cat parse.h $(TOP)/src/vdbe.c | $(NAWK) -f $(TOP)/mkopcodeh.awk >opcodes.hos.o:	$(TOP)/src/os.c $(HDR)	$(TCCX) -c $(TOP)/src/os.cos_unix.o:	$(TOP)/src/os_unix.c $(HDR)	$(TCCX) -c $(TOP)/src/os_unix.cos_win.o:	$(TOP)/src/os_win.c $(HDR)	$(TCCX) -c $(TOP)/src/os_win.cparse.o:	parse.c $(HDR)	$(TCCX) -c parse.cparse.h:	parse.cparse.c:	$(TOP)/src/parse.y lemon $(TOP)/addopcodes.awk	cp $(TOP)/src/parse.y .	./lemon $(OPTS) parse.y

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日韩国产欧美视频| 欧美丰满高潮xxxx喷水动漫| 久草精品在线观看| 久久精品国产77777蜜臀| 国产精品亚洲专一区二区三区| 国产一区二区福利| 日韩欧美国产不卡| 91免费看片在线观看| 日韩国产高清影视| 欧美极品aⅴ影院| 国产精品一区专区| 久久国产精品免费| 天天综合网天天综合色| 日韩av电影免费观看高清完整版在线观看| 三级不卡在线观看| 精品中文字幕一区二区| 欧美色视频在线观看| 日韩欧美一二三四区| 激情综合网av| 亚洲国产成人av网| 喷白浆一区二区| 麻豆91精品视频| 91麻豆免费视频| 日本久久电影网| 欧美一区二区免费视频| 中文字幕一区二区三区蜜月| 天堂影院一区二区| 日本精品裸体写真集在线观看| 欧美大片国产精品| 秋霞国产午夜精品免费视频| youjizz国产精品| 久久蜜臀精品av| 蜜桃视频在线观看一区| 欧美丰满少妇xxxbbb| 亚洲午夜久久久久久久久电影网| 岛国精品一区二区| 欧美国产综合一区二区| 久久精品国产成人一区二区三区 | 欧美成人免费网站| 欧美一卡二卡在线观看| 亚洲成人黄色影院| 精品影院一区二区久久久| 成人a免费在线看| 国产精品你懂的| 91亚洲精品一区二区乱码| 亚洲狼人国产精品| 欧美图片一区二区三区| 天堂久久久久va久久久久| 69精品人人人人| 国产一区二区三区在线观看免费视频| 久久网站最新地址| 成人免费视频caoporn| 亚洲日本韩国一区| 欧美亚州韩日在线看免费版国语版| 亚洲蜜桃精久久久久久久| 欧美日韩亚洲综合| 国产一区二区三区黄视频 | 欧美激情一区二区三区| av资源站一区| 天天影视涩香欲综合网| 久久综合精品国产一区二区三区 | 国产精品人成在线观看免费| 91麻豆国产精品久久| 日本欧美韩国一区三区| 欧美国产综合一区二区| 欧美伦理电影网| 国产传媒一区在线| 一区二区三区资源| 久久久亚洲综合| 91国产丝袜在线播放| 韩国一区二区三区| 亚洲美女电影在线| 久久综合久久鬼色| 欧美午夜免费电影| 成人精品电影在线观看| 午夜精品aaa| 日韩美女精品在线| 国产亚洲欧美日韩在线一区| 欧美日韩一级片在线观看| 国产69精品一区二区亚洲孕妇| 亚洲国产你懂的| 国产精品视频一二| 日韩欧美亚洲国产精品字幕久久久| 91视频一区二区三区| 免费看欧美女人艹b| 亚洲香肠在线观看| 国产精品久久三| 欧美一级日韩不卡播放免费| 一本久久综合亚洲鲁鲁五月天| 激情文学综合网| 丝袜美腿亚洲一区二区图片| 亚洲欧美欧美一区二区三区| 欧美国产一区二区| 精品国产免费久久 | 国产欧美精品一区二区三区四区 | 亚洲欧美在线高清| 欧美精品一区二区三区四区| 91麻豆精品国产91久久久久久| 在线观看一区二区视频| 成人性色生活片| 国产福利一区二区三区在线视频| 久久精品国产99国产| 日本va欧美va欧美va精品| 亚洲h动漫在线| 亚洲精品中文字幕在线观看| 中文字幕中文字幕一区| 国产精品灌醉下药二区| 日本一区二区综合亚洲| 国产欧美一区二区精品秋霞影院 | 日韩一卡二卡三卡| 欧美一区二区三区电影| 欧美一区二区三区四区久久| 欧美一区二区成人| 欧美成人一区二区三区片免费| 日韩一级片网址| 精品少妇一区二区三区视频免付费| 欧美一区二区三区视频免费播放| 制服丝袜亚洲播放| 91精品综合久久久久久| 欧美成人国产一区二区| 久久亚洲精精品中文字幕早川悠里 | 国精产品一区一区三区mba桃花| 久久成人18免费观看| 国产一区二区免费视频| 成人一区二区三区视频| 91在线看国产| 欧美日韩免费电影| 91麻豆精品国产91久久久更新时间| 欧美一区二区三区在线观看| 精品国产3级a| 国产精品毛片a∨一区二区三区 | 97精品久久久久中文字幕 | 不卡区在线中文字幕| 91网上在线视频| 欧美日韩激情一区| 2024国产精品| 一区二区国产视频| 美女视频黄频大全不卡视频在线播放| 另类欧美日韩国产在线| 成人午夜视频福利| 欧美综合亚洲图片综合区| 日韩一级二级三级精品视频| 国产女同性恋一区二区| 亚洲最色的网站| 日韩av不卡一区二区| 国产99久久久国产精品潘金 | 91视频免费观看| 337p亚洲精品色噜噜| 欧美激情在线一区二区三区| 亚洲一区二区中文在线| 黄色精品一二区| 欧美综合视频在线观看| 久久综合一区二区| 亚洲在线观看免费视频| 国产剧情一区在线| 欧美日韩激情一区二区| 中文字幕欧美三区| 日韩av网站免费在线| jizz一区二区| 精品少妇一区二区| 亚洲自拍偷拍麻豆| 国产jizzjizz一区二区| 制服丝袜成人动漫| 亚洲乱码中文字幕综合| 国产精品亚洲一区二区三区在线| 欧美亚洲国产一区二区三区va | 国产成人一区二区精品非洲| 欧美日产在线观看| 亚洲天堂中文字幕| 国产高清亚洲一区| 精品入口麻豆88视频| 亚洲18女电影在线观看| av亚洲产国偷v产偷v自拍| 欧美电影免费观看高清完整版在线 | 激情小说亚洲一区| 欧美蜜桃一区二区三区| 亚洲另类色综合网站| 懂色av一区二区三区免费观看 | 欧美日韩久久一区| 亚洲精品日韩综合观看成人91| 国产美女视频91| 精品成人一区二区三区四区| 日韩精品高清不卡| 欧美丰满少妇xxxbbb| 亚洲成av人片在线| 91国内精品野花午夜精品| 亚洲欧美影音先锋| www.欧美亚洲| 中文字幕免费观看一区| 国产乱码一区二区三区| 日韩欧美一级二级三级久久久| 天天色综合天天| 91精品国产综合久久福利| 日韩黄色在线观看| 欧美人动与zoxxxx乱| 日本亚洲最大的色成网站www| 欧美老女人第四色| 日韩经典中文字幕一区| 欧美一级高清片| 久久99国产精品尤物|