d0c3d1cf43
And all the infrastructure surrounding it. A broken sed implementation is quite rare nowadays, as seen by the fact that the current host-sed support has been broken for a while, so just get rid of it. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
33 lines
803 B
Makefile
33 lines
803 B
Makefile
######################################################################
|
|
#
|
|
# 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
|
|
|
|
dependencies-source:
|
|
|
|
dependencies-clean:
|
|
rm -f $(SSTRIP_TARGET)
|
|
|
|
dependencies-dirclean:
|
|
true
|
|
|
|
#############################################################
|
|
#
|
|
# Toplevel Makefile options
|
|
#
|
|
#############################################################
|
|
.PHONY: dependencies
|
|
|