1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-04-21 12:27:27 +03:00

make log output a bit nicer

git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2241 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd
2005-10-22 15:10:20 +00:00
parent 5b8944fc71
commit 0781686bc6
11 changed files with 55 additions and 35 deletions

View File

@@ -34,24 +34,32 @@ MAKEOPTS:= BOARD="$(BOARD)" \
%-prepare:
@$(TRACE) target/linux/package/$(patsubst %-prepare,%,$@)-prepare
@$(START_TRACE) "target/linux/package/$(patsubst %-prepare,%,$@)/prepare: "
$(MAKE) -C $(patsubst %-prepare,%,$@) \
$(MAKEOPTS) \
prepare
@$(CMD_TRACE) " done"
@$(END_TRACE)
%-compile:
@$(TRACE) target/linux/package/$(patsubst %-compile,%,$@)-compile
@$(START_TRACE) "target/linux/package/$(patsubst %-compile,%,$@)-compile: "
$(MAKE) -C $(patsubst %-compile,%,$@) \
$(MAKEOPTS) \
compile
@$(CMD_TRACE) " done"
@$(END_TRACE)
%-install: %-compile
@$(TRACE) target/linux/package/$(patsubst %-install,%,$@)-install
@$(START_TRACE) "target/linux/package/$(patsubst %-install,%,$@)-install: "
$(MAKE) -C $(patsubst %-install,%,$@) \
$(MAKEOPTS) \
install
@$(CMD_TRACE) " done"
@$(END_TRACE)
%-clean:
@$(TRACE) target/linux/package/$(patsubst %-clean,%,$@)-clean
@$(START_TRACE) "target/linux/package/$(patsubst %-clean,%,$@)-clean: "
@$(MAKE) -C $(patsubst %-clean,%,$@) clean
@$(CMD_TRACE) " done"
@$(END_TRACE)

View File

@@ -25,13 +25,11 @@ $(PKG_BUILD_DIR)/.prepared:
mkdir -p $(PKG_BUILD_DIR)
touch $@
$(PKG_BUILD_DIR)/.built: $(PKG_BUILD_DIR)/diag.o
$(PKG_BUILD_DIR)/.built:
$(TARGET_CC) $(DIAG_FLAGS) -o $@ diag_led.c
touch $@
$(PKG_BUILD_DIR)/diag.o: $(PKG_BUILD_DIR)/.prepared
$(TARGET_CC) $(DIAG_FLAGS) -o $@ diag_led.c
$(IPKG_KMOD_DIAG): $(PKG_BUILD_DIR)/diag.o
$(IPKG_KMOD_DIAG):
mkdir -p $(IDIR_KMOD_DIAG)/lib/modules/$(LINUX_VERSION)
cp $(PKG_BUILD_DIR)/diag.o $(IDIR_KMOD_DIAG)/lib/modules/$(LINUX_VERSION)/
$(IPKG_BUILD) $(IDIR_KMOD_DIAG) $(PACKAGE_DIR)

View File

@@ -42,7 +42,7 @@ $(IPKG_OPENWRT): $(IDIR_OPENWRT)
$(RSTRIP) $(IDIR_OPENWRT)
$(IPKG_BUILD) $(IDIR_OPENWRT) $(PACKAGE_DIR)
install: compile openwrt-install
install-targets: compile openwrt-install
openwrt-install:
$(IPKG) install $(IPKG_OPENWRT)