mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-04 18:29:42 +02:00
b5fec425be
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@699 3c298f89-4303-0410-b956-a3cf2f4a3e73
29 lines
601 B
Makefile
29 lines
601 B
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
TARGETS := addpattern trx
|
|
ifeq ($(BR2_TARGET_BELKIN),y)
|
|
TARGETS += belkin-bin
|
|
endif
|
|
ifeq ($(BR2_TARGET_MOTOROLA),y)
|
|
TARGETS += motorola-bin
|
|
endif
|
|
|
|
UTILS_BUILD_DIR:=$(BUILD_DIR)/target-utils
|
|
|
|
prepare: $(UTILS_BUILD_DIR)
|
|
compile: prepare $(patsubst %,$(UTILS_BUILD_DIR)/%,$(TARGETS))
|
|
mkdir -p $(STAGING_DIR)/bin
|
|
cp -a $(UTILS_BUILD_DIR)/* $(STAGING_DIR)/bin/
|
|
install: compile
|
|
package:
|
|
clean:
|
|
rm -rf $(UTILS_BUILD_DIR)
|
|
|
|
$(UTILS_BUILD_DIR):
|
|
mkdir -p $(UTILS_BUILD_DIR)
|
|
|
|
$(UTILS_BUILD_DIR)/%: src/%.c
|
|
$(CC) -o $@ $(patsubst $(UTILS_BUILD_DIR)/%,src/%.c,$@)
|
|
chmod 755 $@
|
|
|