123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250 |
- ifeq ($(USE_OPT),)
- USE_OPT = -O0 -ggdb -fomit-frame-pointer -falign-functions=16
- endif
- ifeq ($(USE_COPT),)
- USE_COPT =
- endif
- ifeq ($(USE_CPPOPT),)
- USE_CPPOPT = -fno-rtti
- endif
- ifeq ($(USE_LINK_GC),)
- USE_LINK_GC = yes
- endif
- ifeq ($(USE_LDOPT),)
- USE_LDOPT =
- endif
- ifeq ($(USE_LTO),)
- USE_LTO = yes
- endif
- ifeq ($(USE_THUMB),)
- USE_THUMB = no
- endif
- ifeq ($(USE_VERBOSE_COMPILE),)
- USE_VERBOSE_COMPILE = no
- endif
- ifeq ($(USE_SMART_BUILD),)
- USE_SMART_BUILD = yes
- endif
- ifeq ($(USE_SYSTEM_STACKSIZE),)
- USE_SYSTEM_STACKSIZE = 0x400
- endif
- ifeq ($(USE_EXCEPTIONS_STACKSIZE),)
- USE_IRQ_STACKSIZE = 0x400
- endif
- ifeq ($(USE_FIQ_STACKSIZE),)
- USE_FIQ_STACKSIZE = 0x400
- endif
- ifeq ($(USE_SUPERVISOR_STACKSIZE),)
- USE_SUPERVISOR_STACKSIZE = 8
- endif
- ifeq ($(USE_UND_STACKSIZE),)
- USE_UND_STACKSIZE = 8
- endif
- ifeq ($(USE_ABT_STACKSIZE),)
- USE_ABT_STACKSIZE = 8
- endif
- ifeq ($(USE_FPU),)
- USE_FPU = no
- endif
- PROJECT = ch
- CHIBIOS = ../../..
- CONFDIR := ./cfg
- BUILDDIR := ./build
- DEPDIR := ./.dep
- include $(CHIBIOS)/os/license/license.mk
- include $(CHIBIOS)/os/common/startup/ARMCAx-TZ/compilers/GCC/mk/startup_sama5d2.mk
- include $(CHIBIOS)/os/hal/hal.mk
- include $(CHIBIOS)/os/hal/ports/SAMA/SAMA5D2x/platform.mk
- include $(CHIBIOS)/os/hal/boards/ATSAMA5D2_XULT/board.mk
- include $(CHIBIOS)/os/hal/osal/rt/osal.mk
- include $(CHIBIOS)/os/rt/rt.mk
- include $(CHIBIOS)/os/common/ports/ARMCAx-TZ/compilers/GCC/mk/port_generic.mk
- include $(CHIBIOS)/test/lib/test.mk
- include $(CHIBIOS)/test/rt/rt_test.mk
- include $(CHIBIOS)/test/oslib/oslib_test.mk
- LDSCRIPT= $(STARTUPLD)/SAMA5D2ddr.ld
- CSRC = $(ALLCSRC) \
- $(TESTSRC) \
- main.c
- CPPSRC = $(ALLCPPSRC)
- ACSRC =
- ACPPSRC =
- TCSRC =
- TCPPSRC =
- ASMSRC = $(ALLASMSRC)
- ASMXSRC = $(ALLXASMSRC)
- INCDIR = $(CONFDIR) $(ALLINC) $(TESTINC)
- MCU = cortex-a5
- TRGT = arm-none-eabi-
- CC = $(TRGT)gcc
- CPPC = $(TRGT)g++
- LD = $(TRGT)gcc
- CP = $(TRGT)objcopy
- AS = $(TRGT)gcc -x assembler-with-cpp
- AR = $(TRGT)ar
- OD = $(TRGT)objdump
- SZ = $(TRGT)size
- HEX = $(CP) -O ihex
- BIN = $(CP) -O binary
- AOPT =
- TOPT = -mthumb -DTHUMB
- CWARN = -Wall -Wextra -Wundef -Wstrict-prototypes
- CPPWARN = -Wall -Wextra -Wundef
- UDEFS =
- UADEFS =
- UINCDIR =
- ULIBDIR =
- ULIBS =
- RULESPATH = $(CHIBIOS)/os/common/startup/ARMCAx-TZ/compilers/GCC
- include $(RULESPATH)/rules.mk
- misra:
- @lint-nt -v -w3 $(DEFS) pclint/co-gcc.lnt pclint/au-misra3.lnt pclint/waivers.lnt $(IINCDIR) $(CSRC) &> misra.txt
|