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

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

?? makefile

?? 嵌入式數(shù)據(jù)庫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

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
午夜久久电影网| 欧美人成免费网站| 久久av资源网| 亚洲韩国一区二区三区| 另类小说视频一区二区| 久久99精品视频| 美女任你摸久久 | 国产成人免费视频一区| www.久久精品| 9人人澡人人爽人人精品| 99久久免费精品| 5月丁香婷婷综合| 国产欧美日韩在线看| 亚洲国产成人av网| 91一区二区三区在线播放| 欧美另类z0zxhd电影| **性色生活片久久毛片| 强制捆绑调教一区二区| 91丨porny丨中文| 欧美激情综合五月色丁香小说| 天堂成人国产精品一区| 国产·精品毛片| 精品国产乱码久久久久久浪潮 | 中文字幕日韩欧美一区二区三区| 老司机一区二区| 欧美精品在线一区二区| 国产三级欧美三级日产三级99 | 成人18精品视频| 国产精品国产三级国产三级人妇| 夜夜嗨av一区二区三区| 国产成人免费视频网站 | 色综合久久六月婷婷中文字幕| 666欧美在线视频| 免费观看成人av| 欧美精品国产精品| 午夜亚洲福利老司机| 69堂成人精品免费视频| 亚洲高清免费视频| 欧美日韩美女一区二区| 亚洲观看高清完整版在线观看| voyeur盗摄精品| 伊人夜夜躁av伊人久久| 在线观看视频一区| 蜜臀va亚洲va欧美va天堂| 欧美成人性战久久| 国产一区二区在线视频| 欧美成人r级一区二区三区| 国产成人免费网站| 亚洲成av人在线观看| 93久久精品日日躁夜夜躁欧美| 亚洲欧美激情小说另类| 久久久一区二区三区捆绑**| 91色porny| 免费在线看成人av| 国产视频一区二区在线| 欧美丝袜丝交足nylons图片| 久久成人免费电影| 亚洲成人免费av| 亚洲国产精品成人久久综合一区| 韩国女主播一区二区三区| 亚洲国产精品一区二区尤物区| 欧美精品一区二区三区高清aⅴ| 国产99久久久国产精品潘金| 午夜精品久久久久久久蜜桃app| 久久伊人中文字幕| 在线观看一区日韩| 91在线视频观看| 成人v精品蜜桃久久一区| 日本中文一区二区三区| 五月综合激情婷婷六月色窝| 日韩伦理av电影| 国产精品嫩草99a| 1000部国产精品成人观看| 日韩欧美高清一区| 亚洲视频综合在线| 免费黄网站欧美| 欧美mv日韩mv国产网站| 91久久国产最好的精华液| 欧美一区二区不卡视频| 亚洲免费观看在线观看| 亚洲综合成人在线| 亚洲图片激情小说| 亚洲同性同志一二三专区| 欧美精品一区二区精品网| 日韩精品一区二区三区在线观看| 国产久卡久卡久卡久卡视频精品| 三级不卡在线观看| 日本三级韩国三级欧美三级| 中文字幕第一区二区| 国产精品乱人伦中文| 日韩国产在线观看一区| 日韩高清不卡一区| 色网综合在线观看| 国产日韩亚洲欧美综合| 日韩av一区二区在线影视| 91一区一区三区| 国产日韩欧美精品综合| 亚洲一区在线视频观看| 国产激情视频一区二区在线观看 | 中文字幕综合网| 日韩av电影免费观看高清完整版| 国产精品一级片| 国产偷v国产偷v亚洲高清| 久久精品999| 日韩va欧美va亚洲va久久| 欧美日韩高清一区| 亚洲色图在线看| 国产99一区视频免费| 制服丝袜中文字幕亚洲| 国产片一区二区三区| 国产精品三级av在线播放| 国产经典欧美精品| 亚洲天天做日日做天天谢日日欢| 久久超碰97中文字幕| 国产精品二区一区二区aⅴ污介绍| 麻豆精品视频在线观看视频| www日韩大片| 欧美久久久久久久久中文字幕| 国产成人av福利| 国产成人免费在线| 国产亚洲精品aa| 欧美韩国一区二区| 日韩精彩视频在线观看| 免费成人深夜小野草| 麻豆国产欧美日韩综合精品二区| 国产一区二区三区不卡在线观看| 欧美丰满高潮xxxx喷水动漫| 亚洲人成在线播放网站岛国| 久久精品国产77777蜜臀| 一区二区免费看| 日本黄色一区二区| 日韩国产欧美在线播放| 中文字幕制服丝袜成人av| 国产乱码精品1区2区3区| 国产亚洲精品bt天堂精选| 91香蕉视频污在线| 免费成人你懂的| 亚洲少妇30p| 日韩久久久精品| 91农村精品一区二区在线| 亚洲小说欧美激情另类| 日韩欧美国产小视频| 国产麻豆精品视频| 欧美不卡一区二区三区| 国产精品高潮呻吟久久| 91一区在线观看| 亚洲一二三专区| 欧美一区二区女人| 国产肉丝袜一区二区| 婷婷综合五月天| 韩国成人精品a∨在线观看| 欧美一区永久视频免费观看| 午夜精品久久久久久久| 亚洲乱码国产乱码精品精98午夜| 欧美日韩高清在线播放| 麻豆91在线播放免费| 久久一区二区视频| 国产成人三级在线观看| 精品无人码麻豆乱码1区2区 | 欧美日韩一区高清| 欧美一区二区三区视频| 久久综合九色综合欧美98| 国产成a人亚洲精| 日韩激情在线观看| 国产精品久久久久久亚洲伦| 精品国产91亚洲一区二区三区婷婷| 欧美日韩一区小说| 久久综合色鬼综合色| 亚洲青青青在线视频| 韩国成人在线视频| 色婷婷综合久久久中文一区二区| 欧美精三区欧美精三区| 久久久久99精品国产片| 首页国产欧美久久| 色久优优欧美色久优优| 91精品国产综合久久婷婷香蕉| 日本丶国产丶欧美色综合| 成人丝袜高跟foot| 日本精品裸体写真集在线观看| 色婷婷综合视频在线观看| 99久久综合国产精品| 在线观看www91| 中文字幕巨乱亚洲| 亚洲图片欧美视频| 国产a精品视频| 亚洲欧美日韩国产成人精品影院 | 91美女片黄在线观看| 国产欧美日韩综合精品一区二区| 免费人成在线不卡| 日韩欧美国产电影| 久久激情综合网| 久久久久国产精品人| 国产精品亚洲一区二区三区妖精 | 日韩精品五月天| 在线不卡的av| 丰满少妇久久久久久久| 亚洲欧美二区三区| 欧美一区二区三区男人的天堂| 日本aⅴ精品一区二区三区 | 国产白丝精品91爽爽久久|