1
0
mirror of git://projects.qi-hardware.com/ben-wpan.git synced 2024-10-01 16:26:19 +03:00

Renamed fw/boot/ to fw/atspi-boot/. Fixed build problem in fw/atspi-boot/.

- fw/Makefile, fw/boot/Makefile: renamed fw/boot/ to fw/atspi-boot/
- fw/atspi-boot/Makefile: added -I../include to CFLAGS, so that we find
  usb-ids.h
This commit is contained in:
Werner Almesberger 2010-08-23 02:46:22 -03:00
parent 9c2deb8e0a
commit d6b045c513
2 changed files with 3 additions and 3 deletions

View File

@ -11,7 +11,7 @@
# #
DIRS=common boot atspi DIRS=common atspi-boot atspi
.PHONY: all depend install uninstall clean spotless .PHONY: all depend install uninstall clean spotless

View File

@ -1,5 +1,5 @@
# #
# boot/Makefile - Makefile for DFU-capable boot loader # atspi-boot/Makefile - Makefile for DFU-capable boot loader for ATSPI
# #
# Written 2008, 2010 by Werner Almesberger # Written 2008, 2010 by Werner Almesberger
# Copyright 2008, 2010 Werner Almesberger # Copyright 2008, 2010 Werner Almesberger
@ -18,5 +18,5 @@ F32XBASE = ../../../f32xbase
include $(F32XBASE)/fw/common/Makefile.system include $(F32XBASE)/fw/common/Makefile.system
include $(F32XBASE)/fw/common/Makefile.common include $(F32XBASE)/fw/common/Makefile.common
CFLAGS += -I../common CFLAGS += -I../common -I../include
LDFLAGS += --code-size $(PAYLOAD_START) LDFLAGS += --code-size $(PAYLOAD_START)