mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-10 16:24:05 +02:00
update sqlite2 to new upstream release (v2.8.17),
add mostlyclean target, standardize. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@2748 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
746141c516
commit
9e95fbc738
@ -3,9 +3,9 @@
|
|||||||
include $(TOPDIR)/rules.mk
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_NAME:=sqlite2
|
PKG_NAME:=sqlite2
|
||||||
PKG_VERSION:=2.8.16
|
PKG_VERSION:=2.8.17
|
||||||
PKG_RELEASE:=1
|
PKG_RELEASE:=1
|
||||||
PKG_MD5SUM:=9c79b461ff30240a6f9d70dd67f8faea
|
PKG_MD5SUM:=838dbac20b56d2c4292e98848505a05b
|
||||||
|
|
||||||
PKG_SOURCE_URL:=http://www.sqlite.org/
|
PKG_SOURCE_URL:=http://www.sqlite.org/
|
||||||
PKG_SOURCE:=sqlite-$(PKG_VERSION).tar.gz
|
PKG_SOURCE:=sqlite-$(PKG_VERSION).tar.gz
|
||||||
@ -23,8 +23,8 @@ $(PKG_BUILD_DIR)/.configured:
|
|||||||
(cd $(PKG_BUILD_DIR); rm -rf config.{cache,status} ; \
|
(cd $(PKG_BUILD_DIR); rm -rf config.{cache,status} ; \
|
||||||
$(TARGET_CONFIGURE_OPTS) \
|
$(TARGET_CONFIGURE_OPTS) \
|
||||||
CFLAGS="$(TARGET_CFLAGS)" \
|
CFLAGS="$(TARGET_CFLAGS)" \
|
||||||
CPPFLAGS="-I$(STAGING_DIR)/usr/include" \
|
CPPFLAGS="-I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/include" \
|
||||||
LDFLAGS="-L$(STAGING_DIR)/usr/lib" \
|
LDFLAGS="-L$(STAGING_DIR)/usr/lib -L$(STAGING_DIR)/lib" \
|
||||||
config_BUILD_CC="$(HOSTCC)" \
|
config_BUILD_CC="$(HOSTCC)" \
|
||||||
config_BUILD_CFLAGS="-O2" \
|
config_BUILD_CFLAGS="-O2" \
|
||||||
config_TARGET_CC="$(TARGET_CC)" \
|
config_TARGET_CC="$(TARGET_CC)" \
|
||||||
@ -33,26 +33,26 @@ $(PKG_BUILD_DIR)/.configured:
|
|||||||
config_TARGET_READLINE_LIBS="-L$(STAGING_DIR)/usr/lib -lreadline -lncurses" \
|
config_TARGET_READLINE_LIBS="-L$(STAGING_DIR)/usr/lib -lreadline -lncurses" \
|
||||||
config_TARGET_TCL_INC="-DNO_TCL=1" \
|
config_TARGET_TCL_INC="-DNO_TCL=1" \
|
||||||
./configure \
|
./configure \
|
||||||
--target=$(GNU_TARGET_NAME) \
|
--target=$(GNU_TARGET_NAME) \
|
||||||
--host=$(GNU_TARGET_NAME) \
|
--host=$(GNU_TARGET_NAME) \
|
||||||
--build=$(GNU_HOST_NAME) \
|
--build=$(GNU_HOST_NAME) \
|
||||||
--program-prefix="" \
|
--program-prefix="" \
|
||||||
--program-suffix="" \
|
--program-suffix="" \
|
||||||
--prefix=/usr \
|
--prefix=/usr \
|
||||||
--exec-prefix=/usr \
|
--exec-prefix=/usr \
|
||||||
--bindir=/usr/bin \
|
--bindir=/usr/bin \
|
||||||
--datadir=/usr/share \
|
--datadir=/usr/share \
|
||||||
--includedir=/usr/include \
|
--includedir=/usr/include \
|
||||||
--infodir=/usr/share/info \
|
--infodir=/usr/share/info \
|
||||||
--libdir=/usr/lib \
|
--libdir=/usr/lib \
|
||||||
--libexecdir=/usr/lib \
|
--libexecdir=/usr/lib \
|
||||||
--localstatedir=/var \
|
--localstatedir=/var \
|
||||||
--mandir=/usr/share/man \
|
--mandir=/usr/share/man \
|
||||||
--sbindir=/usr/sbin \
|
--sbindir=/usr/sbin \
|
||||||
--sysconfdir=/etc \
|
--sysconfdir=/etc \
|
||||||
$(DISABLE_LARGEFILE) \
|
$(DISABLE_LARGEFILE) \
|
||||||
--enable-shared \
|
--enable-shared \
|
||||||
--enable-static \
|
--enable-static \
|
||||||
);
|
);
|
||||||
touch $@
|
touch $@
|
||||||
|
|
||||||
@ -95,3 +95,7 @@ uninstall-dev:
|
|||||||
|
|
||||||
compile-targets: install-dev
|
compile-targets: install-dev
|
||||||
clean-targets: uninstall-dev
|
clean-targets: uninstall-dev
|
||||||
|
|
||||||
|
mostlyclean:
|
||||||
|
-$(MAKE) -C $(PKG_BUILD_DIR) clean
|
||||||
|
rm -f $(PKG_BUILD_DIR)/.built
|
||||||
|
Loading…
Reference in New Issue
Block a user