rules.mk 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. include $(TOPDIR)/prereq.mk
  4. -include $(TOPDIR)/.config
  5. ifeq ($(VERBOSE),1)
  6. START_TRACE:= :
  7. END_TRACE:= :
  8. TRACE:= :
  9. CMD_TRACE:= :
  10. PKG_TRACE:= :
  11. MAKE_TRACE:=
  12. EXTRA_MAKEFLAGS:=
  13. SET_DASHX:= set -x
  14. else
  15. START_TRACE:= echo -n "---> "
  16. END_TRACE:= echo
  17. TRACE:= echo "---> "
  18. CMD_TRACE:= echo -n
  19. PKG_TRACE:= echo "------> "
  20. EXTRA_MAKEFLAGS:= -s
  21. MAKE_TRACE:= >/dev/null 2>&1 || { echo "Build failed. Please re-run make with v to see what's going on"; false; }
  22. SET_DASHX:= :
  23. endif
  24. # Strip off the annoying quoting
  25. ADK_TARGET:= $(strip $(subst ",, $(ADK_TARGET)))
  26. ADK_LIBC:= $(strip $(subst ",, $(ADK_LIBC)))
  27. ADK_HOST:= $(strip $(subst ",, $(ADK_HOST)))
  28. ADK_VENDOR:= $(strip $(subst ",, $(ADK_VENDOR)))
  29. ADK_TARGET_IP:= $(strip $(subst ",, $(ADK_TARGET_IP)))
  30. ADK_TARGET_SUFFIX:= $(strip $(subst ",, $(ADK_TARGET_SUFFIX)))
  31. ADK_COMPRESSION_TOOL:= $(strip $(subst ",, $(ADK_COMPRESSION_TOOL)))
  32. ADK_TARGET_CFLAGS:= $(strip $(subst ",, $(ADK_TARGET_CFLAGS)))
  33. ifeq ($(strip ${ADK_HAVE_DOT_CONFIG}),y)
  34. ifneq ($(strip $(wildcard $(TOPDIR)/target/$(ADK_TARGET)/target.mk)),)
  35. include $(TOPDIR)/target/$(ADK_TARGET)/target.mk
  36. endif
  37. endif
  38. include $(TOPDIR)/mk/vars.mk
  39. export BASH HOSTCC HOSTCFLAGS MAKE LANGUAGE LC_ALL OStype PATH
  40. HOSTCPPFLAGS?=
  41. HOSTLDFLAGS?=
  42. TARGET_CFLAGS:= $(strip -fno-ident ${TARGET_CFLAGS})
  43. TARGET_CC:= $(strip ${TARGET_CC})
  44. TARGET_CXX:= $(strip ${TARGET_CXX})
  45. ifneq (${show},)
  46. .DEFAULT_GOAL:= show
  47. show:
  48. @$(info ${${show}})
  49. else ifneq (${dump},)
  50. __shquote= '$(subst ','\'',$(1))'
  51. __dumpvar= echo $(call __shquote,$(1)=$(call __shquote,${$(1)}))
  52. .DEFAULT_GOAL:= show
  53. show:
  54. @$(foreach _s,${dump},$(call __dumpvar,${_s});)
  55. endif