Files
lk/target/lpc43xx-generic/rules.mk
Brian Swetland 3e3036d0c2 [platform][lpc43xx] hook up debug uart
For the moment, just a trivial implementation in debug.c.
To be replaced with a standard lk uart "driver" later on.
2015-07-05 05:44:54 -07:00

18 lines
249 B
Makefile

LOCAL_DIR := $(GET_LOCAL_DIR)
MODULE := $(LOCAL_DIR)
PLATFORM := lpc43xx
GLOBAL_DEFINES += \
CRYSTAL_FREQ=12000000 \
TARGET_DEBUG_UART=3
GLOBAL_INCLUDES += \
$(LOCAL_DIR)/include
MODULE_SRCS += \
$(LOCAL_DIR)/init.c
include make/module.mk