summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorTomasz Kramkowski <tk@the-tk.com>2017-03-26 21:45:42 +0100
committerTomasz Kramkowski <tk@the-tk.com>2017-03-26 21:45:42 +0100
commit03f33481c42954ec118d5dd92703b2b2208f4a3a (patch)
tree61ff51b02413e2a7441bf340f9afd8510af29890 /Makefile
parent6f2090ae7fca871512258623d2bbd5484716a706 (diff)
downloadfmk-03f33481c42954ec118d5dd92703b2b2208f4a3a.tar.gz
fmk-03f33481c42954ec118d5dd92703b2b2208f4a3a.tar.xz
fmk-03f33481c42954ec118d5dd92703b2b2208f4a3a.zip
uart support
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index d663578..ce66787 100644
--- a/Makefile
+++ b/Makefile
@@ -17,7 +17,8 @@ CFLAGS = -std=c11 $(WARNINGS) -O2 -flto -MMD -MP -ffreestanding -nostdlib
LDFLAGS = -T layout.ld -O2 -flto -ffreestanding -nostdlib
ASFLAGS = $(TARGET_ARCH)
-OBJ := crt0.o vectors.o flashconf.o setup.o fmk.o lib/le.o usb/usb.o usb/endpt0.o usb/endpt1.o
+OBJ := crt0.o vectors.o flashconf.o setup.o fmk.o lib/le.o usb/usb.o \
+ usb/endpt0.o usb/endpt1.o uart/uart.o
include $(MK20DX256)/mk20dx256.mk
CPPFLAGS += $(mk20dx256_CPPFLAGS)