kumquat-buildroot/toolchain/dependencies/dependencies.mk

33 lines
803 B
Makefile
Raw Normal View History

######################################################################
#
2006-05-26 03:18:09 +02:00
# Check buildroot dependencies and bail out if the user's
# system is judged to be lacking....
#
######################################################################
DEPENDENCIES_HOST_PREREQ:=
ifeq ($(BR2_STRIP_sstrip),y)
DEPENDENCIES_HOST_PREREQ+=sstrip_host
endif
dependencies: $(DEPENDENCIES_HOST_PREREQ)
@HOSTCC="$(firstword $(HOSTCC))" MAKE="$(MAKE)" \
CONFIG_FILE="$(CONFIG_DIR)/.config" \
$(TOPDIR)/toolchain/dependencies/dependencies.sh
2006-05-26 03:18:09 +02:00
dependencies-source:
2006-05-26 03:18:09 +02:00
dependencies-clean:
rm -f $(SSTRIP_TARGET)
2006-05-26 03:18:09 +02:00
dependencies-dirclean:
true
#############################################################
#
# Toplevel Makefile options
#
#############################################################
2006-07-19 08:37:58 +02:00
.PHONY: dependencies