Makefile 202 B

12345678910111213
  1. phony := all
  2. all:
  3. include config.mk
  4. ifneq ($(MAKE_LIB),1)
  5. TARGET := rtthread.elf
  6. include src.mk
  7. endif
  8. $(if $(strip $(RTT_ROOT)),,$(error RTT_ROOT not defined))
  9. include $(RTT_ROOT)/tools/rtthread.mk