diff options
author | Felix Fietkau <nbd@openwrt.org> | 2005-10-22 12:12:59 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2005-10-22 12:12:59 +0000 |
commit | 8b8c9d4d6e70172075340cc98ca0b5a3850a0e97 (patch) | |
tree | e48fd90e059253eaa9bc13f166d06e3ecad818ef /package/bluez-libs/Makefile | |
parent | 43cc1b7107138cb7cacae51459e05df5bfcbb384 (diff) | |
download | upstream-8b8c9d4d6e70172075340cc98ca0b5a3850a0e97.tar.gz upstream-8b8c9d4d6e70172075340cc98ca0b5a3850a0e97.tar.bz2 upstream-8b8c9d4d6e70172075340cc98ca0b5a3850a0e97.zip |
lots of small package changes and dependency cleanups for the V= stuff
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2230 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/bluez-libs/Makefile')
-rw-r--r-- | package/bluez-libs/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/package/bluez-libs/Makefile b/package/bluez-libs/Makefile index 17ac5a1164..7490fa8c8a 100644 --- a/package/bluez-libs/Makefile +++ b/package/bluez-libs/Makefile @@ -22,7 +22,7 @@ $(PKG_BUILD_DIR)/.source: $(DL_DIR)/$(PKG_SOURCE) zcat $(DL_DIR)/$(PKG_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) - touch $(BLUEZLIBS_DIR)/.source -$(PKG_BUILD_DIR)/.configured: $(PKG_BUILD_DIR)/.prepared +$(PKG_BUILD_DIR)/.configured: (cd $(PKG_BUILD_DIR); rm -rf config.{cache,status} ; \ $(TARGET_CONFIGURE_OPTS) \ CFLAGS="$(TARGET_CFLAGS)" \ @@ -58,7 +58,7 @@ $(PKG_BUILD_DIR)/.configured: $(PKG_BUILD_DIR)/.prepared ) touch $@ -$(PKG_BUILD_DIR)/.built: $(PKG_BUILD_DIR)/.configured +$(PKG_BUILD_DIR)/.built: rm -rf $(PKG_INSTALL_DIR) mkdir -p $(PKG_INSTALL_DIR) $(MAKE) -C $(PKG_BUILD_DIR) \ @@ -84,5 +84,5 @@ uninstall-dev: rm -rf $(STAGING_DIR)/usr/include/bluetooth rm -rf $(STAGING_DIR)/usr/lib/libbluetooth.{a,so*} -compile: install-dev -clean: uninstall-dev +compile-targets: install-dev +clean-targets: uninstall-dev |