source: rtems/c/src/lib/libbsp/arm/lpc24xx/Makefile.am @ b18fd86

4.115
Last change on this file since b18fd86 was b18fd86, checked in by Sebastian Huber <sebastian.huber@…>, on 06/23/10 at 08:11:28

2010-06-23 Sebastian Huber <sebastian.huber@…>

  • make/custom/lpc23xx_tli800.cfg, startup/linkcmds.lpc23xx_tli800: New files.
  • Makefile.am, configure.ac: Reflect changes above.
  • startup/linkcmds.lpc2362: Typos.
  • README: Documentation.
  • Property mode set to 100644
File size: 4.9 KB
RevLine 
[5aeed17]1##
2#
3# @file
4#
[29cc1477]5# @brief Makefile of LibBSP for the LPC24XX boards.
[5aeed17]6#
7
8# $Id$
9
10ACLOCAL_AMFLAGS = -I ../../../../aclocal
11
12include $(top_srcdir)/../../../../automake/compile.am
13
14include_bspdir = $(includedir)/bsp
[39c8fdb]15include_libcpudir = $(includedir)/libcpu
[5aeed17]16
[3416c44]17dist_project_lib_DATA = bsp_specs
18
[5aeed17]19###############################################################################
20#                  Header                                                     #
21###############################################################################
22
[f969fcb]23include_HEADERS = include/bsp.h
[5aeed17]24
[9647f7fe]25nodist_include_HEADERS = ../../shared/include/coverhd.h \
26        include/bspopts.h
[29cc1477]27
[3416c44]28nodist_include_bsp_HEADERS = ../../shared/include/bootcard.h
[5aeed17]29
[f969fcb]30include_bsp_HEADERS =
31include_bsp_HEADERS += ../../shared/include/utility.h
[ef06d30]32include_bsp_HEADERS += ../../shared/include/irq-generic.h
[9647f7fe]33include_bsp_HEADERS += ../../shared/include/irq-info.h
[7ae2775]34include_bsp_HEADERS += ../../shared/include/stackalloc.h
[a9485d7b]35include_bsp_HEADERS += ../../shared/include/uart-output-char.h
[ef06d30]36include_bsp_HEADERS += ../../shared/tod.h
37include_bsp_HEADERS += ../shared/include/linker-symbols.h
38include_bsp_HEADERS += ../shared/include/start.h
[c468f18b]39include_bsp_HEADERS += ../shared/lpc/include/lpc-timer.h
[ef06d30]40include_bsp_HEADERS += include/irq.h
41include_bsp_HEADERS += include/lpc24xx.h
42include_bsp_HEADERS += include/system-clocks.h
43include_bsp_HEADERS += include/ssp.h
44include_bsp_HEADERS += include/dma.h
[7ae2775]45include_bsp_HEADERS += include/i2c.h
46include_bsp_HEADERS += include/io.h
[c468f18b]47include_bsp_HEADERS += include/lpc-clock-config.h
[39c8fdb]48include_bsp_HEADERS += include/lpc-ethernet-config.h
[9647f7fe]49
[ef06d30]50include_HEADERS += ../../shared/include/tm27.h
[5aeed17]51
[39c8fdb]52include_libcpu_HEADERS = ../../../libcpu/arm/shared/include/cache.h
53
[5aeed17]54###############################################################################
55#                  Data                                                       #
56###############################################################################
57
[c0bea05]58noinst_LIBRARIES = libbspstart.a
[29cc1477]59
[c0bea05]60libbspstart_a_SOURCES = ../shared/start/start.S
[29cc1477]61
[5aeed17]62project_lib_DATA = start.$(OBJEXT)
63
[7187942]64project_lib_DATA += startup/linkcmds
65project_lib_DATA += ../shared/startup/linkcmds.base
66EXTRA_DIST = startup/linkcmds.lpc24xx_ea
67EXTRA_DIST += startup/linkcmds.lpc24xx_ncs_rom_int
68EXTRA_DIST += startup/linkcmds.lpc24xx_ncs_rom_ext
69EXTRA_DIST += startup/linkcmds.lpc24xx_ncs_ram
[c468f18b]70EXTRA_DIST += startup/linkcmds.lpc2362
[b18fd86]71EXTRA_DIST += startup/linkcmds.lpc23xx_tli800
[5aeed17]72
73###############################################################################
74#                  LibBSP                                                     #
75###############################################################################
[29cc1477]76
[c0bea05]77noinst_LIBRARIES += libbsp.a
[29cc1477]78
[64eb0c7]79libbsp_a_SOURCES =
[39c8fdb]80libbsp_a_CPPFLAGS =
81libbsp_a_LIBADD =
[5aeed17]82
[29cc1477]83# Shared
[64eb0c7]84libbsp_a_SOURCES += ../../shared/bootcard.c \
[5aeed17]85        ../../shared/bspclean.c \
86        ../../shared/bspgetworkarea.c \
87        ../../shared/bsplibc.c \
88        ../../shared/bsppost.c \
89        ../../shared/bsppredriverhook.c \
90        ../../shared/gnatinstallhandler.c \
91        ../../shared/sbrk.c \
[7ae2775]92        ../../shared/src/stackalloc.c \
[a9485d7b]93        ../../shared/src/uart-output-char.c \
[5aeed17]94        ../shared/abort/simple_abort.c
95
[29cc1477]96# Startup
[9647f7fe]97libbsp_a_SOURCES += startup/bspstart.c \
98        startup/bspreset.c
[5aeed17]99
[29cc1477]100# IRQ
[64eb0c7]101libbsp_a_SOURCES += ../../shared/src/irq-generic.c \
[5aeed17]102        ../../shared/src/irq-legacy.c \
[9647f7fe]103        ../../shared/src/irq-info.c \
104        ../../shared/src/irq-shell.c \
[ba938b8d]105        ../../shared/src/irq-server.c \
[5aeed17]106        irq/irq.c
107
[29cc1477]108# Console
[64eb0c7]109libbsp_a_SOURCES += ../../shared/console.c \
[5aeed17]110        console/console-config.c
111
[29cc1477]112# Clock
[c468f18b]113libbsp_a_SOURCES += ../shared/lpc/clock/lpc-clock-config.c \
[29cc1477]114        ../../../shared/clockdrv_shell.h
[5aeed17]115
[29cc1477]116# RTC
[64eb0c7]117libbsp_a_SOURCES += ../../shared/tod.c \
[5aeed17]118        rtc/rtc-config.c
119
[29cc1477]120# Misc
121libbsp_a_SOURCES += misc/system-clocks.c \
[7ae2775]122        misc/dma.c \
[ba938b8d]123        misc/dma-copy.c \
[e90329f]124        misc/bspidle.c \
[ba938b8d]125        misc/io.c \
126        misc/timer.c
[29cc1477]127
128# SSP
129libbsp_a_SOURCES += ssp/ssp.c
[5aeed17]130
[7ae2775]131# I2C
132libbsp_a_SOURCES += i2c/i2c.c
133
[39c8fdb]134# Cache
135libbsp_a_SOURCES += ../../../libcpu/shared/src/cache_manager.c \
136        ../../../libcpu/arm/shared/cache/cache_.h
137libbsp_a_CPPFLAGS += -I$(srcdir)/../../../libcpu/arm/shared/include
138
[22f107b6]139# Start hooks
[ba938b8d]140libbsp_a_SOURCES += startup/bspstarthooks.c
141
[9647f7fe]142###############################################################################
143#                  Network                                                    #
144###############################################################################
145
146if HAS_NETWORKING
147
148noinst_PROGRAMS = network.rel
149
[39c8fdb]150network_rel_SOURCES = ../shared/lpc/network/lpc-ethernet.c
[9647f7fe]151network_rel_CPPFLAGS = $(AM_CPPFLAGS) -D__INSIDE_RTEMS_BSD_TCPIP_STACK__ -D__BSD_VISIBLE
152network_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
153
[39c8fdb]154libbsp_a_LIBADD += network.rel
[9647f7fe]155
156endif
157
[5aeed17]158###############################################################################
159#                  Special Rules                                              #
160###############################################################################
161
[29cc1477]162DISTCLEANFILES = include/bspopts.h
[5aeed17]163
164include $(srcdir)/preinstall.am
165include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.