Makefile 384 B

12345678910111213141516171819
  1. TARGET = rtthread_demo
  2. RTOS = RTThread
  3. NUCLEI_SDK_ROOT = ../../..
  4. COMMON_FLAGS = -O3 -DSMODE_RTOS
  5. # Better with SSTC extension
  6. # when SSTC extension present, S-Mode present
  7. # You can change to 0, if SSTC not present
  8. XLCFG_SSTC ?= 1
  9. # Require S-Mode
  10. # set to 1 to enable S-Mode if your CPU has
  11. XLCFG_SMODE ?=
  12. SRCDIRS = .
  13. INCDIRS = .
  14. include $(NUCLEI_SDK_ROOT)/Build/Makefile.base