fix rebuild target (remove some warnings)

SVN-Revision: 1171
This commit is contained in:
Felix Fietkau 2005-06-08 18:57:17 +00:00
parent 36110909d1
commit 43d87a640a
1 changed files with 7 additions and 7 deletions

View File

@ -27,13 +27,6 @@ $$(INFO_$(1)): $$(IPKG_$(1))
$(2)-clean:
rm -f $$(IPKG_$(1))
clean: $(2)-clean
mostlyclean:
rebuild:
-$(MAKE) mostlyclean
if [ -f $(PKG_BUILD_DIR)/.built ]; then \
$(MAKE) clean; \
fi
$(MAKE) compile
endef
ifneq ($(strip $(PKG_SOURCE)),)
@ -58,6 +51,13 @@ source: $(DL_DIR)/$(PKG_SOURCE)
prepare: $(PKG_BUILD_DIR)/.prepared
compile:
install:
mostlyclean:
rebuild:
-$(MAKE) mostlyclean
if [ -f $(PKG_BUILD_DIR)/.built ]; then \
$(MAKE) clean; \
fi
$(MAKE) compile
$(PKG_BUILD_DIR)/.configured: $(PKG_BUILD_DIR)/.prepared
$(PKG_BUILD_DIR)/.built: $(PKG_BUILD_DIR)/.configured