summaryrefslogtreecommitdiff
path: root/target/Makefile
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@uclibc-ng.org>2015-12-11 22:40:55 +0100
committerWaldemar Brodkorb <wbx@uclibc-ng.org>2015-12-11 22:40:55 +0100
commit74663fdbbd1dc92dd91f6f88dbc4f972df12c404 (patch)
tree284817a1c9ff266a6474ae9d441eb53e7c514e6c /target/Makefile
parent5847a9730ff284181c4087ed9ce85cf9955c47c3 (diff)
Revert "rework prereq check"
This reverts commit fba2ff31928b18364c1934654169806f5c800e23.
Diffstat (limited to 'target/Makefile')
-rw-r--r--target/Makefile25
1 files changed, 7 insertions, 18 deletions
diff --git a/target/Makefile b/target/Makefile
index c0a76f1d8..d6cfa0bf8 100644
--- a/target/Makefile
+++ b/target/Makefile
@@ -122,25 +122,19 @@ install: $(ADK_TARGET_ARCH)-imageclean $(ADK_TARGET_ARCH)-install $(ADK_TARGET_A
clean: $(ADK_TARGET_ARCH)-clean $(ADK_TARGET_ARCH)-imageclean
%-clean:
- $(START_TRACE) "target/$(patsubst %-clean,%,$@)-clean.. "
+ $(TRACE) target/$(patsubst %-clean,%,$@)-clean
$(MAKE) -C $(patsubst %-clean,%,$@) clean
- $(CMD_TRACE) " done"
- $(END_TRACE)
%-imageclean:
- $(START_TRACE) "target/$(patsubst %-imageclean,%,$@)-imageclean.. "
+ $(TRACE) target/$(patsubst %-imageclean,%,$@)-imageclean
$(MAKE) -C $(patsubst %-imageclean,%,$@) imageclean
- $(CMD_TRACE) " done"
- $(END_TRACE)
%-prepare:
- $(START_TRACE) "target/$(patsubst %-prepare,%,$@)-prepare.. "
+ $(TRACE) target/$(patsubst %-prepare,%,$@)-prepare
$(MAKE) -C $(patsubst %-prepare,%,$@) prepare
- $(CMD_TRACE) " done"
- $(END_TRACE)
%-imageprepare:
- $(START_TRACE) "target/$(patsubst %-imageprepare,%,$@)-imageprepare.. "
+ $(TRACE) target/$(patsubst %-imageprepare,%,$@)-imageprepare
ifeq ($(ADK_RUNTIME_DEV_UDEV),y)
# This should be made a package instead
$(CP) -a $(BUILD_DIR)/linux-$(ADK_TARGET_ARCH)/modules/lib $(TARGET_DIR)
@@ -152,28 +146,23 @@ endif
break; \
done
$(MAKE) -C $(patsubst %-imageprepare,%,$@) imageprepare
- $(CMD_TRACE) " done"
- $(END_TRACE)
%-compile: %-prepare
+ $(TRACE) target/$(patsubst %-compile,%,$@)-compile
$(MAKE) -C $(patsubst %-compile,%,$@) compile
%-install: %-compile
- $(START_TRACE) "target/$(patsubst %-install,%,$@)-install.. "
+ $(TRACE) target/$(patsubst %-install,%,$@)-install
$(MAKE) -C $(patsubst %-install,%,$@) install
- $(CMD_TRACE) " done"
- $(END_TRACE)
%-targethelp:
$(MAKE) -C $(patsubst %-targethelp,%,$@) targethelp
%-imageinstall: %-imageprepare
- $(START_TRACE) "target/$(patsubst %-imageinstall,%,$@)-imageinstall.. "
+ $(TRACE) target/$(patsubst %-imageinstall,%,$@)-imageinstall
$(MAKE) -C $(patsubst %-imageinstall,%,$@) imageinstall
@for x in $$(ls $(ADK_TOPDIR)/scripts/postimage/*.sh 2>/dev/null); do \
[[ -x "$$x" ]] && $$x; \
break; \
done
- $(CMD_TRACE) " done"
- $(END_TRACE)
@echo "Login as user root via ssh or console."