compile fix for diag
[openwrt.git] / target / linux / package / Makefile
index 6b7a858..c69705b 100644 (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: %-prepare 
-       @$(TRACE) target/linux/package/$(patsubst %-compile,%,$@)-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)
 
This page took 0.025698 seconds and 4 git commands to generate.