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.
25 lines
631 B
25 lines
631 B
###################################################################### |
|
# |
|
# 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 |
|
|
|
|