Makefile 505 B

1234567891011121314151617181920212223242526272829
  1. TARGET = smphello
  2. NUCLEI_SDK_ROOT = ../../..
  3. SRCDIRS = .
  4. INCDIRS = .
  5. COMMON_FLAGS := -O2
  6. # REQUIRE: AMO, SMPCC, SYSTIMER, CCM
  7. XLCFG_AMO :=
  8. XLCFG_SMPCC :=
  9. XLCFG_SYSTIMER :=
  10. XLCFG_CCM :=
  11. # Per-Core HEAP and STACK Size Settings
  12. HEAPSZ ?= 2K
  13. STACKSZ ?= 2K
  14. # DOWNLOAD mode must be a mode
  15. # where all cpus share the same code/data ram
  16. # such as external ddr/sram, core local ilm is not ok
  17. DOWNLOAD ?= sram
  18. CORE ?= nx900
  19. # SMP CORE Number Settings
  20. SMP ?= 2
  21. include $(NUCLEI_SDK_ROOT)/Build/Makefile.base