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

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

?? makefile

?? 嵌入式數據庫SQLITE,含移植到ARM_LINUX的說明
??
?? 第 1 頁 / 共 2 頁
字號:
#!/usr/make## Makefile for SQLITE## This makefile is suppose to be configured automatically using the# autoconf.  But if that does not work for you, you can configure# the makefile manually.  Just set the parameters below to values that# work well for your system.## If the configure script does not work out-of-the-box, you might# be able to get it to work by giving it some hints.  See the comment# at the beginning of configure.in for additional information.## The toplevel directory of the source tree.  This is the directory# that contains this "Makefile.in" and the "configure.in" script.#TOP = ..# C Compiler and options for use in building executables that# will run on the platform that is doing the build.## Modified by zhoujp at 2006-08-23#BCC = arm-linux-gcc -g -O2BCC = gcc -g -O2# End# C Compile and options for use in building executables that # will run on the target platform.  (BCC and TCC are usually the# same unless your are cross-compiling.)#TCC = arm-linux-gcc -g -O2 -DOS_UNIX=1 -DHAVE_USLEEP=1 -DHAVE_FDATASYNC=1 -I. -I${TOP}/src# Define -DNDEBUG to compile without debugging (i.e., for production usage)# Omitting the define will cause extra debugging code to be inserted and# includes extra comments when "EXPLAIN stmt" is used.#TCC += -DNDEBUG # Compiler options needed for programs that use the TCL library.#TCC += # The library that programs using TCL must link against.#LIBTCL =  # Compiler options needed for programs that use the readline() library.#READLINE_FLAGS = -DHAVE_READLINE=0 # The library that programs using readline() must link against.#LIBREADLINE = # Should the database engine be compiled threadsafe#TCC += -DTHREADSAFE=0# The pthreads library if needed#LIBPTHREAD=# Do threads override each others locks by default (1), or do we test (-1)#TCC += -DSQLITE_THREAD_OVERRIDE_LOCK=-1# The fdatasync libraryTLIBS = # Flags controlling use of the in memory btree implementation## TEMP_STORE is 0 to force temporary tables to be in a file, 1 to# default to file, 2 to default to memory, and 3 to force temporary# tables to always be in memory.#TEMP_STORE = -DTEMP_STORE=1# Version numbers and release number for the SQLite being compiled.#VERSION = 3.3VERSION_NUMBER = 3003007RELEASE = 3.3.7# Filename extensions#BEXE = TEXE = # The following variable is "1" if the configure script was able to locate# the tclConfig.sh file.  It is an empty string otherwise.  When this# variable is "1", the TCL extension library (libtclsqlite3.so) is built# and installed.#HAVE_TCL = # The suffix used on shared libraries.  Ex:  ".dll", ".so", ".dylib"#SHLIB_SUFFIX = @TCL_SHLIB_SUFFIX@# The directory into which to store package information for# Some standard variables and programs#prefix = /usr/localexec_prefix = ${prefix}libdir = ${exec_prefix}/libINSTALL = /usr/bin/install -cLIBTOOL = ./libtoolALLOWRELEASE = # libtool compile/link/installLTCOMPILE = $(LIBTOOL) --mode=compile $(TCC)LTLINK = $(LIBTOOL) --mode=link $(TCC)LTINSTALL = $(LIBTOOL) --mode=install $(INSTALL)# nawk compatible awk.NAWK = gawk# You should not have to change anything below this line###############################################################################OPTS = OPTS += -DSQLITE_OMIT_CURSOR          # Cursors do not work at this timeTCC += -DSQLITE_OMIT_CURSOR# Object files for the SQLite library.#LIBOBJ = alter.lo analyze.lo attach.lo auth.lo btree.lo build.lo \         callback.lo complete.lo date.lo \         delete.lo expr.lo func.lo hash.lo insert.lo loadext.lo \         main.lo opcodes.lo os.lo os_unix.lo os_win.lo os_os2.lo \         pager.lo parse.lo pragma.lo prepare.lo printf.lo random.lo \         select.lo table.lo tokenize.lo trigger.lo update.lo \         util.lo vacuum.lo \         vdbe.lo vdbeapi.lo vdbeaux.lo vdbefifo.lo vdbemem.lo \         where.lo utf.lo legacy.lo vtab.lo# 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/loadext.c \  $(TOP)/src/main.c \  $(TOP)/src/os.c \  $(TOP)/src/os_unix.c \  $(TOP)/src/os_win.c \  $(TOP)/src/os_os2.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/vtab.c \  $(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/os_os2.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/test8.c \  $(TOP)/src/test_async.c \  $(TOP)/src/test_md5.c \  $(TOP)/src/test_schema.c \  $(TOP)/src/test_server.c \  $(TOP)/src/test_tclvar.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/sqlite3ext.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.la sqlite3$(TEXE) $(HAVE_TCL:1=libtclsqlite3.la)Makefile: $(TOP)/Makefile.in	./config.status# 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 -k 5 | tail -1 \          | $(NAWK) '{print $$5,$$6}' >last_changelibsqlite3.la:	$(LIBOBJ)	$(LTLINK) -o libsqlite3.la $(LIBOBJ) $(LIBPTHREAD) \		${ALLOWRELEASE} -rpath $(libdir) -version-info "8:6:8"libtclsqlite3.la:	tclsqlite.lo libsqlite3.la	$(LTLINK) -o libtclsqlite3.la tclsqlite.lo \		$(LIBOBJ)  $(LIBPTHREAD) \                -rpath $(libdir)/sqlite \		-version-info "8:6:8"# Modified by zhoujp at 2006-08-23sqlite3$(TEXE):	$(TOP)/src/shell.c .libs/libsqlite3.a sqlite3.h	$(LTLINK) $(READLINE_FLAGS) $(LIBPTHREAD) \		-o $@ $(TOP)/src/shell.c .libs/libsqlite3.a \		$(LIBREADLINE) $(TLIBS)# End# 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) parse.c opcodes.c keywordhash.h $(VDBEHDR) 	rm -rf tsrc	mkdir -p 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$(BEXE):	$(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.lo:	$(TOP)/src/alter.c $(HDR)	$(LTCOMPILE) -c $(TOP)/src/alter.canalyze.lo:	$(TOP)/src/analyze.c $(HDR)	$(LTCOMPILE) -c $(TOP)/src/analyze.cattach.lo:	$(TOP)/src/attach.c $(HDR)	$(LTCOMPILE) -c $(TOP)/src/attach.cauth.lo:	$(TOP)/src/auth.c $(HDR)	$(LTCOMPILE) -c $(TOP)/src/auth.cbtree.lo:	$(TOP)/src/btree.c $(HDR) $(TOP)/src/pager.h	$(LTCOMPILE) -c $(TOP)/src/btree.cbuild.lo:	$(TOP)/src/build.c $(HDR)	$(LTCOMPILE) -c $(TOP)/src/build.ccallback.lo:	$(TOP)/src/callback.c $(HDR)	$(LTCOMPILE) -c $(TOP)/src/callback.ccomplete.lo:	$(TOP)/src/complete.c $(HDR)	$(LTCOMPILE) -c $(TOP)/src/complete.cdate.lo:	$(TOP)/src/date.c $(HDR)	$(LTCOMPILE) -c $(TOP)/src/date.cdelete.lo:	$(TOP)/src/delete.c $(HDR)	$(LTCOMPILE) -c $(TOP)/src/delete.cexpr.lo:	$(TOP)/src/expr.c $(HDR)	$(LTCOMPILE) -c $(TOP)/src/expr.cfunc.lo:	$(TOP)/src/func.c $(HDR)	$(LTCOMPILE) -c $(TOP)/src/func.chash.lo:	$(TOP)/src/hash.c $(HDR)	$(LTCOMPILE) -c $(TOP)/src/hash.cinsert.lo:	$(TOP)/src/insert.c $(HDR)	$(LTCOMPILE) -c $(TOP)/src/insert.clegacy.lo:	$(TOP)/src/legacy.c $(HDR)	$(LTCOMPILE) -c $(TOP)/src/legacy.cloadext.lo:	$(TOP)/src/loadext.c $(HDR)	$(LTCOMPILE) -c $(TOP)/src/loadext.cmain.lo:	$(TOP)/src/main.c $(HDR)	$(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/main.c

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲综合在线观看视频| 久久久影院官网| 久久精品夜色噜噜亚洲a∨| 亚洲日本电影在线| 毛片基地黄久久久久久天堂| 成人高清在线视频| 3d成人动漫网站| 国产精品国模大尺度视频| 日韩精品久久理论片| 成人国产精品免费观看| 日韩精品一区二区三区三区免费| 国产精品午夜久久| 免费在线观看日韩欧美| 国产a精品视频| 欧美日韩的一区二区| 中文字幕av一区二区三区免费看 | 麻豆精品国产91久久久久久| 成人一区二区三区视频| 日韩精品一区二区在线观看| 成人免费一区二区三区在线观看 | 日韩一区二区三区视频在线| 综合av第一页| 国产一区不卡精品| 在线成人av影院| 自拍偷拍国产精品| 国产高清在线观看免费不卡| 欧美精品久久一区| 亚洲品质自拍视频网站| 国产成人一级电影| 精品美女一区二区三区| 五月婷婷激情综合网| 91亚洲男人天堂| 国产婷婷色一区二区三区四区| 亚洲成a人片在线不卡一二三区 | 午夜不卡av在线| 99re这里只有精品视频首页| 久久精品视频在线看| 免费人成精品欧美精品| 欧美撒尿777hd撒尿| 亚洲欧美激情在线| 国产专区欧美精品| 51精品国自产在线| 亚洲成人资源网| 91香蕉视频污在线| 中文字幕在线观看一区二区| 国产一区二区看久久| 精品久久久久久久久久久久久久久久久 | 精品一区二区三区在线视频| 欧美日韩成人综合在线一区二区| 亚洲男人都懂的| 99久久精品国产导航| 中文字幕日韩欧美一区二区三区| 国产一区二区在线看| 日韩欧美国产综合| 亚洲一二三专区| 欧美日精品一区视频| 一区二区在线看| 一本一道久久a久久精品综合蜜臀| 国产精品午夜久久| av在线不卡观看免费观看| 国产精品麻豆99久久久久久| 懂色av中文字幕一区二区三区| 亚洲国产精品av| www.亚洲激情.com| 综合久久一区二区三区| 91麻豆国产在线观看| 亚洲卡通欧美制服中文| 在线观看视频欧美| 视频一区二区国产| 日韩你懂的在线观看| 石原莉奈在线亚洲二区| 欧美一区二区三区在线| 免费在线观看成人| 精品久久人人做人人爽| 精品一区二区免费视频| 久久久久国产精品厨房| 成人午夜碰碰视频| 亚洲视频你懂的| 欧美日韩卡一卡二| 日本不卡123| 久久新电视剧免费观看| 粉嫩绯色av一区二区在线观看| 《视频一区视频二区| 欧美三级视频在线播放| 日本不卡一二三区黄网| 久久精品欧美一区二区三区麻豆| 成人av中文字幕| 亚洲伦在线观看| 欧美精品第1页| 黑人巨大精品欧美一区| 国产精品毛片a∨一区二区三区| 在线国产电影不卡| 麻豆精品一区二区三区| 国产精品天干天干在观线| 欧美亚洲禁片免费| 麻豆91精品91久久久的内涵| 国产女主播在线一区二区| 日本丰满少妇一区二区三区| 五月婷婷激情综合| 久久精品水蜜桃av综合天堂| 日本韩国一区二区| 人人超碰91尤物精品国产| 2014亚洲片线观看视频免费| 97精品超碰一区二区三区| 日韩电影在线一区二区| 中文字幕第一区第二区| 欧美肥胖老妇做爰| 成人激情av网| 蜜臀av性久久久久av蜜臀妖精| 国产日韩精品视频一区| 欧美日韩高清影院| 国产99久久久国产精品潘金| 亚洲高清久久久| 国产精品人成在线观看免费 | 蜜桃视频一区二区三区在线观看| 国产精品天干天干在线综合| 91精彩视频在线| 极品少妇一区二区三区精品视频| 日韩理论片在线| 欧美va亚洲va| 色美美综合视频| 国产精品中文字幕欧美| 午夜影院久久久| 国产精品污网站| 欧美电影免费观看高清完整版在线观看| 成人精品在线视频观看| 日本不卡的三区四区五区| 亚洲欧美国产77777| 日韩三区在线观看| 成人av在线播放网站| 日韩国产欧美在线视频| 亚洲精品视频在线看| 久久久噜噜噜久久中文字幕色伊伊 | 精品久久久久久久久久久久久久久| 91蝌蚪porny| 国产高清精品在线| 青青草97国产精品免费观看 | 99久久777色| 免费黄网站欧美| 一区二区理论电影在线观看| 国产视频一区在线观看| 91麻豆精品国产91久久久久| 欧美最猛性xxxxx直播| 丁香激情综合五月| 黄色资源网久久资源365| 三级精品在线观看| 一区二区三区91| 亚洲图片欧美激情| 亚洲国产精品v| 国产亚洲欧洲997久久综合| 日韩午夜激情电影| 91精品国产日韩91久久久久久| 色婷婷久久综合| 95精品视频在线| 成人视屏免费看| 国产成人综合亚洲网站| 久久精品国产亚洲高清剧情介绍 | 欧美性色欧美a在线播放| 99re这里只有精品视频首页| 福利一区二区在线观看| 国产成人综合亚洲网站| 国产一区二区三区最好精华液| 亚洲精品国产一区二区三区四区在线 | 玉足女爽爽91| 国产欧美日本一区视频| 国产亚洲一区二区三区| 精品精品欲导航| 欧美电影免费观看高清完整版在线观看 | 欧美一区二区福利视频| 色综合久久综合中文综合网| av在线播放成人| 91在线视频网址| 91麻豆视频网站| 不卡一区二区在线| 91麻豆国产福利精品| 99国产精品国产精品久久| 成人av在线播放网址| 91老师国产黑色丝袜在线| 欧美熟乱第一页| 日韩女优毛片在线| 国产免费成人在线视频| 亚洲欧美一区二区三区极速播放| 亚洲一区av在线| 久久国产精品一区二区| 成人午夜视频福利| 在线观看一区日韩| 日韩欧美国产综合在线一区二区三区| 久久久青草青青国产亚洲免观| 国产精品传媒入口麻豆| 亚洲电影一区二区| 国产一区二区在线影院| 91首页免费视频| 欧美一级二级三级乱码| 国产精品素人一区二区| 亚洲国产日韩av| 国产伦精一区二区三区| 91高清视频在线| 欧美成人a视频| 自拍偷拍欧美激情| 麻豆91在线观看|