mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-06 04:10:36 +02:00
c4769dfdb0
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@662 3c298f89-4303-0410-b956-a3cf2f4a3e73
26 lines
694 B
Makefile
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 |