You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
631 B
26 lines
631 B
13 years ago
|
######################################################################
|
||
|
#
|
||
|
# Check buildroot dependencies and bail out if the user's
|
||
|
# system is judged to be lacking....
|
||
|
#
|
||
|
######################################################################
|
||
|
|
||
|
dependencies:
|
||
|
@HOSTCC="$(firstword $(HOSTCC))" MAKE="$(MAKE)" $(TOPDIR)/toolchain/dependencies/dependencies.sh
|
||
|
|
||
|
dependencies-source:
|
||
|
|
||
|
dependencies-clean:
|
||
|
rm -f $(SSTRIP_TARGET)
|
||
|
|
||
|
dependencies-dirclean:
|
||
|
true
|
||
|
|
||
|
#############################################################
|
||
|
#
|
||
|
# Toplevel Makefile options
|
||
|
#
|
||
|
#############################################################
|
||
|
.PHONY: dependencies
|
||
|
|