source: rtems/c/src/lib/libbsp/powerpc/mpc55xxevb/Makefile.am @ 967481a0

4.115
Last change on this file since 967481a0 was 245cad5, checked in by Sebastian Huber <sebastian.huber@…>, on 10/01/12 at 12:28:32

bsp/mpc55xx: Fix bsp_idle_thread()

  • Property mode set to 100644
File size: 5.0 KB
Line 
1ACLOCAL_AMFLAGS = -I ../../../../aclocal
2
3include $(top_srcdir)/../../../../automake/compile.am
4
5include_bspdir = $(includedir)/bsp
6
7dist_project_lib_DATA = bsp_specs
8
9nodist_include_bsp_HEADERS = ../../shared/include/bootcard.h
10DISTCLEANFILES = include/bspopts.h
11
12noinst_PROGRAMS =
13
14noinst_LIBRARIES = libbspstart.a
15libbspstart_a_SOURCES = startup/start.S
16project_lib_DATA = start.$(OBJEXT)
17
18libbspstart_a_SOURCES += ../shared/start/rtems_crti.S
19project_lib_DATA += rtems_crti.$(OBJEXT)
20
21# Link commands
22project_lib_DATA += startup/linkcmds
23dist_project_lib_DATA += ../shared/startup/linkcmds.base       
24dist_project_lib_DATA += startup/linkcmds.mpc55xx
25dist_project_lib_DATA += startup/linkcmds.gwlcfm
26dist_project_lib_DATA += startup/linkcmds.mpc5566evb
27dist_project_lib_DATA += startup/linkcmds.mpc5566evb_spe
28dist_project_lib_DATA += startup/linkcmds.mpc5643l_evb
29dist_project_lib_DATA += startup/linkcmds.mpc5643l_dpu
30dist_project_lib_DATA += startup/linkcmds.mpc5674fevb
31dist_project_lib_DATA += startup/linkcmds.mpc5674fevb_spe
32dist_project_lib_DATA += startup/linkcmds.phycore_mpc5554
33dist_project_lib_DATA += startup/linkcmds.mpc5674f_ecu508_boot
34dist_project_lib_DATA += startup/linkcmds.mpc5674f_ecu508_app
35
36noinst_LIBRARIES += libbsp.a
37libbsp_a_SOURCES =
38
39# Includes
40include_HEADERS = include/bsp.h
41include_HEADERS += ../../shared/include/tm27.h
42
43nodist_include_HEADERS = include/bspopts.h ../../shared/tod.h \
44    ../../shared/include/coverhd.h
45include_bsp_HEADERS =
46include_bsp_HEADERS += ../../../libcpu/powerpc/mpc83xx/i2c/mpc83xx_i2cdrv.h
47include_bsp_HEADERS += ../../shared/include/irq-generic.h
48include_bsp_HEADERS += ../../shared/include/irq-info.h
49include_bsp_HEADERS += ../../shared/include/stackalloc.h
50include_bsp_HEADERS += ../../shared/include/utility.h
51include_bsp_HEADERS += ../shared/include/linker-symbols.h
52include_bsp_HEADERS += ../shared/include/start.h
53include_bsp_HEADERS += ../shared/include/tictac.h
54include_bsp_HEADERS += include/mpc55xx-config.h
55include_bsp_HEADERS += include/mpc55xxevb.h
56include_bsp_HEADERS += include/smsc9218i.h
57include_bsp_HEADERS += include/console-esci.h
58include_bsp_HEADERS += include/console-generic.h
59include_bsp_HEADERS += include/console-linflex.h
60
61# startup
62libbsp_a_SOURCES += ../../shared/bootcard.c
63libbsp_a_SOURCES += ../../shared/bspclean.c
64libbsp_a_SOURCES += ../../shared/bsplibc.c
65libbsp_a_SOURCES += ../../shared/bsppost.c
66libbsp_a_SOURCES += ../../shared/bsppredriverhook.c
67libbsp_a_SOURCES += ../../shared/bspgetworkarea.c
68libbsp_a_SOURCES += ../../shared/src/stackalloc.c
69libbsp_a_SOURCES += ../shared/src/bsp-start-zero.S
70libbsp_a_SOURCES += ../shared/src/memcpy.c
71libbsp_a_SOURCES += ../shared/src/tictac.c
72libbsp_a_SOURCES += startup/bspstart.c
73libbsp_a_SOURCES += startup/exc-vector-base.S
74libbsp_a_SOURCES += startup/get-system-clock.c
75libbsp_a_SOURCES += startup/reset.c
76libbsp_a_SOURCES += startup/restart.c
77libbsp_a_SOURCES += startup/idle-thread.c
78libbsp_a_SOURCES += startup/start-config-clock.c
79libbsp_a_SOURCES += startup/start-config-ebi-cs.c
80libbsp_a_SOURCES += startup/start-config-ebi-cs-cal.c
81libbsp_a_SOURCES += startup/start-config-mmu.c
82libbsp_a_SOURCES += startup/start-config-mmu-early.c
83libbsp_a_SOURCES += startup/start-config-siu-pcr.c
84libbsp_a_SOURCES += startup/start-early.c
85libbsp_a_SOURCES += startup/start-cache.S
86libbsp_a_SOURCES += startup/start-clock.c
87libbsp_a_SOURCES += startup/start-flash.S
88libbsp_a_SOURCES += startup/start-watchdog.c
89
90# clock
91libbsp_a_SOURCES += clock/clock-config.c
92
93# console
94libbsp_a_SOURCES += console/console-config.c
95libbsp_a_SOURCES += console/console-esci.c
96libbsp_a_SOURCES += console/console-generic.c
97libbsp_a_SOURCES += console/console-linflex.c
98
99# irq_generic
100libbsp_a_SOURCES += ../../shared/src/irq-default-handler.c
101libbsp_a_SOURCES += ../../shared/src/irq-generic.c
102libbsp_a_SOURCES += ../../shared/src/irq-info.c
103libbsp_a_SOURCES += ../../shared/src/irq-legacy.c
104libbsp_a_SOURCES += ../../shared/src/irq-server.c
105libbsp_a_SOURCES += ../../shared/src/irq-shell.c
106
107# Misc
108libbsp_a_SOURCES += startup/sd-card-init.c
109
110# I2C
111libbsp_a_SOURCES += i2c/i2c_init.c \
112    ../../../libcpu/powerpc/mpc83xx/i2c/mpc83xx_i2cdrv.c
113
114# Network
115if HAS_NETWORKING
116libbsp_a_SOURCES += network/smsc9218i.c
117libbsp_a_SOURCES += network/if_smc.c
118endif
119
120# BSP library
121
122libbsp_a_LIBADD = ../../../libcpu/@RTEMS_CPU@/shared/cpuIdent.rel \
123    ../../../libcpu/@RTEMS_CPU@/shared/cache.rel \
124    ../../../libcpu/@RTEMS_CPU@/shared/stack.rel \
125    ../../../libcpu/@RTEMS_CPU@/@RTEMS_CPU_MODEL@/misc.rel \
126    ../../../libcpu/@RTEMS_CPU@/@RTEMS_CPU_MODEL@/irq.rel \
127    ../../../libcpu/@RTEMS_CPU@/@RTEMS_CPU_MODEL@/siu.rel \
128    ../../../libcpu/@RTEMS_CPU@/@RTEMS_CPU_MODEL@/edma.rel \
129    ../../../libcpu/@RTEMS_CPU@/@RTEMS_CPU_MODEL@/emios.rel \
130    ../../../libcpu/@RTEMS_CPU@/@RTEMS_CPU_MODEL@/dspi.rel \
131    ../../../libcpu/@RTEMS_CPU@/@exceptions@/rtems-cpu.rel \
132    ../../../libcpu/@RTEMS_CPU@/@exceptions@/exc_bspsupport.rel \
133    ../../../libcpu/@RTEMS_CPU@/@RTEMS_CPU_MODEL@/timer.rel
134
135include $(srcdir)/preinstall.am
136include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.