From 2c8c6093161f7919fc38290cee9181d3f65961ba Mon Sep 17 00:00:00 2001 From: Werner Almesberger Date: Thu, 19 Aug 2010 01:14:21 -0300 Subject: [PATCH] Boot loader Makefile cleanup. - fw/boot/Makefile: removed object file rules now in Makefile.common (of f32xbase) - fw/boot/Makefile: removed setting of -DLOW_SPEED, which can now go into config.h and which was enabled by accident only accident --- fw/boot/Makefile | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/fw/boot/Makefile b/fw/boot/Makefile index 3c2621d..c2c2c5e 100644 --- a/fw/boot/Makefile +++ b/fw/boot/Makefile @@ -18,14 +18,4 @@ F32XBASE = ../../../f32xbase include $(F32XBASE)/fw/common/Makefile.system include $(F32XBASE)/fw/common/Makefile.common -CFLAGS += -DLOW_SPEED LDFLAGS += --code-size $(PAYLOAD_START) - -boot.rel: $(F32XBASE)/fw/boot/boot.c - $(CC) $(CFLAGS) -o $@ -c $< - -usb.rel: $(F32XBASE)/fw/common/usb.c - $(CC) $(CFLAGS) -o $@ -c $< - -dfu.rel: $(F32XBASE)/fw/boot/dfu.c - $(CC) $(CFLAGS) -o $@ -c $<