Files
lk/target/stellaris-launchpad/rules.mk
Travis Geiselbrecht ca800ac932 [console] move the history buffer into static memory, remove console_init
No need to malloc this memory if it's always going to be initialized
anyway. Add history disabling switch to a few targets to make sure both
builds are tested.
2020-05-17 16:13:45 -07:00

18 lines
292 B
Makefile

LOCAL_DIR := $(GET_LOCAL_DIR)
MODULE := $(LOCAL_DIR)
STELLARIS_CHIP := LM4F120H5QR
PLATFORM := stellaris
GLOBAL_DEFINES += \
CONSOLE_ENABLE_HISTORY=0 \
TARGET_HAS_DEBUG_LED=1 \
CRYSTAL_FREQ=16000000
MODULE_SRCS += \
$(LOCAL_DIR)/init.c \
$(LOCAL_DIR)/usb.c \
include make/module.mk