summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomasz Kramkowski <tk@the-tk.com>2017-05-25 21:56:28 +0100
committerTomasz Kramkowski <tk@the-tk.com>2017-05-25 22:00:17 +0100
commit11779f9588d2f3f954558d80ab30e187451129b0 (patch)
treee3d075c6071fe74388b11af1f9d1937ec8a2db07
parentacb403bcbcbc05256500083d1caea7e22ce4db11 (diff)
downloadfmk-11779f9588d2f3f954558d80ab30e187451129b0.tar.gz
fmk-11779f9588d2f3f954558d80ab30e187451129b0.tar.xz
fmk-11779f9588d2f3f954558d80ab30e187451129b0.zip
Makefile: sort OBJs a bit
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index f270a6d..ea5d872 100644
--- a/Makefile
+++ b/Makefile
@@ -17,8 +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 pit.o usb/usb.o \
- usb/endpt0.o usb/endpt1.o usb/txhandler.o uart.o
+OBJ := vectors.o flashconf.o crt0.o setup.o fmk.o lib/le.o pit.o uart.o \
+ usb/endpt0.o usb/endpt1.o usb/txhandler.o usb/usb.o
include $(MK20DX256)/mk20dx256.mk
CPPFLAGS += $(mk20dx256_CPPFLAGS)