diff options
author | Tomasz Kramkowski <tk@the-tk.com> | 2016-11-24 21:55:24 +0000 |
---|---|---|
committer | Tomasz Kramkowski <tk@the-tk.com> | 2016-11-24 21:55:24 +0000 |
commit | 6bd06e042da524448dae7e48a7499517948be2b8 (patch) | |
tree | 2631f21fb3f50f9f880e530d37a4cdaecaecf1a3 /Makefile | |
parent | c6419bba0cafa16e925b8bc5e028dba138c853b9 (diff) | |
download | fmk-6bd06e042da524448dae7e48a7499517948be2b8.tar.gz fmk-6bd06e042da524448dae7e48a7499517948be2b8.tar.xz fmk-6bd06e042da524448dae7e48a7499517948be2b8.zip |
don't use memcpy and memset for now
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -14,7 +14,7 @@ CFLAGS = -std=c11 $(WARNINGS) -O2 -flto -MMD -MP -ffreestanding -nostdlib -Ilib LDFLAGS = -T layout.ld -O2 -flto -ffreestanding -nostdlib ASFLAGS = $(TARGET_ARCH) -OBJ := crt0.o vectors.o flashconf.o setup.o fmk.o lib/string.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 %.bin: % $(OBJCOPY) -O binary $< $@ |