diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2012-04-22 10:47:39 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2012-04-22 10:47:39 +0000 |
commit | f0152ab13b753d4e0ebfacc9afa7c574e5c6979a (patch) | |
tree | 67ae97e8daf0ccee087f028d2a037a6f189a1270 /demos/ARM7-LPC214x-FATFS-GCC/Makefile | |
parent | e8793e67621c47d076c7ce18efa0e4a0bb3543eb (diff) | |
download | ChibiOS-f0152ab13b753d4e0ebfacc9afa7c574e5c6979a.tar.gz ChibiOS-f0152ab13b753d4e0ebfacc9afa7c574e5c6979a.tar.bz2 ChibiOS-f0152ab13b753d4e0ebfacc9afa7c574e5c6979a.zip |
Integrated FatFS 0.9, changes to the FatFS demos and integration files.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@4120 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'demos/ARM7-LPC214x-FATFS-GCC/Makefile')
-rw-r--r-- | demos/ARM7-LPC214x-FATFS-GCC/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/demos/ARM7-LPC214x-FATFS-GCC/Makefile b/demos/ARM7-LPC214x-FATFS-GCC/Makefile index a768f7ca5..02f3b3f31 100644 --- a/demos/ARM7-LPC214x-FATFS-GCC/Makefile +++ b/demos/ARM7-LPC214x-FATFS-GCC/Makefile @@ -51,8 +51,8 @@ include $(CHIBIOS)/os/hal/platforms/LPC214x/platform.mk include $(CHIBIOS)/os/hal/hal.mk
include $(CHIBIOS)/os/ports/GCC/ARM/LPC214x/port.mk
include $(CHIBIOS)/os/kernel/kernel.mk
+include $(CHIBIOS)/os/various/fatfs_bindings/fatfs.mk
include $(CHIBIOS)/test/test.mk
-include $(CHIBIOS)/ext/fatfs/fatfs.mk
# Define linker script file here
LDSCRIPT= $(PORTLD)/LPC2148.ld
@@ -61,11 +61,11 @@ LDSCRIPT= $(PORTLD)/LPC2148.ld # setting.
CSRC = $(PORTSRC) \
$(KERNSRC) \
- $(TESTSRC) \
$(HALSRC) \
$(PLATFORMSRC) \
- $(FATFSSRC) \
$(BOARDSRC) \
+ $(FATFSSRC) \
+ $(TESTSRC) \
${BOARDPATH}/buzzer.c \
$(CHIBIOS)/os/various/evtimer.c \
$(CHIBIOS)/os/various/syscalls.c \
|