2006-05-02 23:35:55 +02:00
|
|
|
######################################################################
|
|
|
|
#
|
2006-05-26 03:18:09 +02:00
|
|
|
# Check buildroot dependencies and bail out if the user's
|
2006-05-02 23:35:55 +02:00
|
|
|
# system is judged to be lacking....
|
|
|
|
#
|
|
|
|
######################################################################
|
|
|
|
|
2006-07-19 01:39:39 +02:00
|
|
|
dependencies: host-sed
|
2007-01-20 14:06:49 +01:00
|
|
|
@HOSTCC="$(firstword $(HOSTCC))" MAKE="$(MAKE)" $(TOPDIR)/toolchain/dependencies/dependencies.sh
|
2006-05-02 23:35:55 +02:00
|
|
|
|
2006-05-26 03:18:09 +02:00
|
|
|
dependencies-source:
|
2006-05-02 23:35:55 +02:00
|
|
|
|
2006-05-26 03:18:09 +02:00
|
|
|
dependencies-clean:
|
2006-05-02 23:35:55 +02:00
|
|
|
rm -f $(SSTRIP_TARGET)
|
|
|
|
|
2006-05-26 03:18:09 +02:00
|
|
|
dependencies-dirclean:
|
2006-05-02 23:35:55 +02:00
|
|
|
true
|
|
|
|
|
|
|
|
#############################################################
|
|
|
|
#
|
|
|
|
# Toplevel Makefile options
|
|
|
|
#
|
|
|
|
#############################################################
|
2006-07-19 08:37:58 +02:00
|
|
|
.PHONY: dependencies
|
|
|
|
|