mirror of https://github.com/hak5/openwrt.git
update sqlite2 to new upstream release (v2.8.17), add mostlyclean target, standardize.
SVN-Revision: 2748lede-17.01
parent
36ffb0d254
commit
7f03e6c252
|
@ -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)" \
|
||||||
|
@ -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