git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1436 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
901489dd38
commit
1b3389efe1
|
@ -0,0 +1,5 @@
|
||||||
|
# List of all the board related files.
|
||||||
|
BOARDSRC = ${CHIBIOS}/boards/OLIMEX_MSP430_P1611/board.c
|
||||||
|
|
||||||
|
# Required include directories
|
||||||
|
BOARDINC = ${CHIBIOS}/boards/OLIMEX_MSP430_P1611
|
|
@ -40,20 +40,22 @@ LDSCRIPT = mspgcc/msp430x1611.x
|
||||||
|
|
||||||
# Imported source files
|
# Imported source files
|
||||||
CHIBIOS = ../..
|
CHIBIOS = ../..
|
||||||
include ${CHIBIOS}/os/hal/hal.mk
|
include $(CHIBIOS)/boards/OLIMEX_MSP430_P1611/board.mk
|
||||||
include ${CHIBIOS}/os/hal/platforms/MSP430/platform.mk
|
include $(CHIBIOS)/os/hal/platforms/MSP430/platform.mk
|
||||||
include ${CHIBIOS}/os/ports/GCC/MSP430/port.mk
|
include $(CHIBIOS)/os/hal/hal.mk
|
||||||
include ${CHIBIOS}/os/kernel/kernel.mk
|
include $(CHIBIOS)/os/ports/GCC/MSP430/port.mk
|
||||||
include ${CHIBIOS}/test/test.mk
|
include $(CHIBIOS)/os/kernel/kernel.mk
|
||||||
|
include $(CHIBIOS)/test/test.mk
|
||||||
|
|
||||||
# C sources here.
|
# C sources here.
|
||||||
CSRC = ${PORTSRC} \
|
CSRC = $(PORTSRC) \
|
||||||
${KERNSRC} \
|
$(KERNSRC) \
|
||||||
${TESTSRC} \
|
$(TESTSRC) \
|
||||||
${HALSRC} \
|
$(HALSRC) \
|
||||||
${PLATFORMSRC} \
|
$(PLATFORMSRC) \
|
||||||
${CHIBIOS}/os/various/evtimer.c \
|
$(BOARDSRC) \
|
||||||
board.c main.c
|
$(CHIBIOS)/os/various/evtimer.c \
|
||||||
|
main.c
|
||||||
|
|
||||||
# C++ sources here.
|
# C++ sources here.
|
||||||
CPPSRC =
|
CPPSRC =
|
||||||
|
@ -61,8 +63,9 @@ CPPSRC =
|
||||||
# List ASM source files here
|
# List ASM source files here
|
||||||
ASMSRC = $(PORTASM)
|
ASMSRC = $(PORTASM)
|
||||||
|
|
||||||
INCDIR = $(PORTINC) $(KERNINC) $(TESTINC) $(HALINC) $(PLATFORMINC) \
|
INCDIR = $(PORTINC) $(KERNINC) $(TESTINC) \
|
||||||
${CHIBIOS}/os/various
|
$(HALINC) $(PLATFORMINC) $(BOARDINC) \
|
||||||
|
$(CHIBIOS)/os/various
|
||||||
|
|
||||||
#
|
#
|
||||||
# Project, sources and paths
|
# Project, sources and paths
|
||||||
|
@ -144,4 +147,4 @@ ULIBS =
|
||||||
# End of user defines
|
# End of user defines
|
||||||
##############################################################################
|
##############################################################################
|
||||||
|
|
||||||
include ${CHIBIOS}/os/ports/GCC/MSP430/rules.mk
|
include $(CHIBIOS)/os/ports/GCC/MSP430/rules.mk
|
||||||
|
|
Loading…
Reference in New Issue