1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-16 12:27:51 +03:00
openwrt-xburst/package/rules.mk
nico c4769dfdb0 Add common rules and templates Makefile includes for packages
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@662 3c298f89-4303-0410-b956-a3cf2f4a3e73
2005-04-18 06:17:39 +00:00

26 lines
694 B
Makefile

ifneq ($(strip $(PKG_SOURCE)),)
$(DL_DIR)/$(PKG_SOURCE):
$(SCRIPT_DIR)/download.pl $(DL_DIR) $(PKG_SOURCE) $(PKG_MD5SUM) $(PKG_SOURCE_URL)
endif
ifneq ($(strip $(PKG_CAT)),)
$(PKG_BUILD_DIR)/.prepared: $(DL_DIR)/$(PKG_SOURCE)
rm -rf $(PKG_BUILD_DIR)
$(PKG_CAT) $(DL_DIR)/$(PKG_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
if [ -d ./patches ]; then \
$(PATCH) $(PKG_BUILD_DIR) ./patches ; \
fi
touch $(PKG_BUILD_DIR)/.prepared
endif
all: compile
source: $(DL_DIR)/$(PKG_SOURCE)
prepare: $(PKG_BUILD_DIR)/.prepared
compile: $(COMPILE_TARGETS)
install: $(INSTALL_TARGETS)
clean: $(CLEAN_TARGETS)
rm -rf $(PKG_FILES) $(PKG_BUILD_DIR)
.PHONY: all source prepare compile install clean