mirror of
https://github.com/kelvinlawson/atomthreads.git
synced 2026-09-18 03:17:06 +02:00
Improved dependency tracking in build system Added ability to build single target application Added abililty to build non-testsuite applications Added 'helloworld' example application
17 lines
459 B
Makefile
17 lines
459 B
Makefile
TARGET ?= lm4f120xl
|
|
|
|
LIBNAME ?= opencm3_lm4f
|
|
DEFS ?= -DLM4F
|
|
DEFS += -DSTD_CON=UART0
|
|
DEFS += -DMST_SIZE=0x400
|
|
|
|
FP_FLAGS ?= -mfloat-abi=hard -mfpu=fpv4-sp-d16
|
|
ARCH_FLAGS ?= -mthumb -mcpu=cortex-m4 $(FP_FLAGS)
|
|
|
|
OOCD ?= openocd
|
|
OOCD_INTERFACE ?= ti-icdi
|
|
OOCD_BOARD ?= ek-lm4f120xl
|
|
|
|
objs += board_setup.o
|
|
objs += stubs.o lm4f_con.o
|
|
# aobjs += helloworld.o
|