1
0
mirror of git://projects.qi-hardware.com/ben-wpan.git synced 2024-07-03 00:15:26 +03:00

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
This commit is contained in:
Werner Almesberger 2010-08-19 01:14:21 -03:00
parent 00f28250c5
commit 2c8c609316

View File

@ -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 $<