Makefile 312 B

12345678910111213141516171819
  1. TARGET := whetstone
  2. NUCLEI_SDK_ROOT = ../../../..
  3. TOOLCHAIN ?= nuclei_gnu
  4. -include toolchain_$(TOOLCHAIN).mk
  5. COMMON_FLAGS := $(BENCH_FLAGS)
  6. # When using libncrt library, no need to link with -lm
  7. LDLIBS := -lm
  8. STDCLIB ?= newlib_small
  9. SRCDIRS = .
  10. INCDIRS = .
  11. include $(NUCLEI_SDK_ROOT)/Build/Makefile.base