| 123456789101112131415161718192021222324252627282930313233343536 |
- TARGET := dhrystone_v2.2
- NUCLEI_SDK_ROOT = ../../../..
- TOOLCHAIN ?= nuclei_gnu
- # Adjust CPU_SERIES according to passed CORE
- ifneq ($(findstring n100,$(CORE)),)
- CPU_SERIES ?= 100
- else ifneq ($(findstring 20,$(CORE)),)
- CPU_SERIES ?= 200
- else ifneq ($(findstring 30,$(CORE)),)
- CPU_SERIES ?= 300
- else ifneq ($(findstring 60,$(CORE)),)
- CPU_SERIES ?= 600
- else ifneq ($(findstring 90,$(CORE)),)
- CPU_SERIES ?= 900
- else ifneq ($(findstring 1000,$(CORE)),)
- CPU_SERIES ?= 1000
- else
- CPU_SERIES ?= 300
- endif
- -include toolchain_$(TOOLCHAIN).mk
- COMMON_FLAGS := $(BENCH_FLAGS) -Wno-implicit-int -Wno-implicit-function-declaration
- SRCDIRS = .
- C_SRCDIRS = .
- INCDIRS = .
- STDCLIB ?= newlib_small
- include $(NUCLEI_SDK_ROOT)/Build/Makefile.base
|