mirror of
git://projects.qi-hardware.com/ben-wpan.git
synced 2024-11-27 02:31:31 +02:00
2c8c609316
- 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
22 lines
600 B
Makefile
22 lines
600 B
Makefile
#
|
|
# boot/Makefile - Makefile for DFU-capable boot loader
|
|
#
|
|
# Written 2008, 2010 by Werner Almesberger
|
|
# Copyright 2008, 2010 Werner Almesberger
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
|
|
MAIN=boot
|
|
OBJS=$(MAIN) usb dfu version
|
|
|
|
F32XBASE = ../../../f32xbase
|
|
|
|
include $(F32XBASE)/fw/common/Makefile.system
|
|
include $(F32XBASE)/fw/common/Makefile.common
|
|
|
|
LDFLAGS += --code-size $(PAYLOAD_START)
|