source: rtems/c/src/lib/libbsp/powerpc/qemuppc/Makefile.am @ bc98089

4.104.115
Last change on this file since bc98089 was 9fd02e2, checked in by Joel Sherrill <joel.sherrill@…>, on 09/24/09 at 16:08:14

2009-09-24 Joel Sherrill <joel.sherrill@…>

  • .cvsignore, ChangeLog?, Makefile.am, README, bsp_specs, configure.ac, preinstall.am, console/console-io.c, include/.cvsignore, include/bsp.h, start/start.S, startup/bsppanic.c, startup/cmain.c, startup/linkcmds: New files.
  • Property mode set to 100644
File size: 2.0 KB
Line 
1##
2## $Id$
3##
4
5ACLOCAL_AMFLAGS = -I ../../../../aclocal
6
7include $(top_srcdir)/../../../../automake/compile.am
8include $(top_srcdir)/../../bsp.am
9
10include_bspdir = $(includedir)/bsp
11
12dist_project_lib_DATA = bsp_specs
13
14include_HEADERS = include/bsp.h
15include_HEADERS += ../../shared/include/tm27.h
16include_bsp_HEADERS = irq/irq.h
17
18nodist_include_HEADERS = include/bspopts.h
19nodist_include_bsp_HEADERS = ../../shared/include/bootcard.h
20DISTCLEANFILES = include/bspopts.h
21noinst_PROGRAMS =
22
23nodist_include_HEADERS += ../../shared/include/coverhd.h
24
25noinst_LIBRARIES = libbspstart.a
26libbspstart_a_SOURCES = start/start.S
27project_lib_DATA = start.$(OBJEXT)
28
29libbspstart_a_SOURCES += ../../powerpc/shared/start/rtems_crti.S
30project_lib_DATA += rtems_crti.$(OBJEXT)
31
32dist_project_lib_DATA += startup/linkcmds
33
34startup_SOURCES = ../../shared/bspclean.c ../../shared/bsplibc.c \
35    ../../shared/bsppredriverhook.c ../../shared/bsppretaskinghook.c \
36    ../../shared/bspgetworkarea.c ../../shared/bsppost.c \
37    ../../shared/bspstart.c ../../shared/bootcard.c ../../shared/sbrk.c \
38    ../../shared/gnatinstallhandler.c \
39    startup/cmain.c startup/bsppanic.c
40clock_SOURCES = ../../shared/clock_driver_simidle.c
41console_SOURCES = ../../shared/console-polled.c console/console-io.c
42timer_SOURCES = ../../shared/timerstub.c
43
44noinst_LIBRARIES += libbsp.a
45libbsp_a_SOURCES = $(startup_SOURCES) $(clock_SOURCES) $(console_SOURCES) \
46    $(timer_SOURCES)
47
48#    ../../../libcpu/@RTEMS_CPU@/mpc6xx/clock.rel
49
50libbsp_a_LIBADD = ../../../libcpu/@RTEMS_CPU@/shared/cpuIdent.rel \
51    ../../../libcpu/@RTEMS_CPU@/shared/stack.rel \
52    ../../../libcpu/@RTEMS_CPU@/@exceptions@/rtems-cpu.rel \
53    ../../../libcpu/@RTEMS_CPU@/@exceptions@/raw_exception.rel \
54    ../../../libcpu/@RTEMS_CPU@/@exceptions@/exc_bspsupport.rel \
55    ../../../libcpu/@RTEMS_CPU@/@exceptions@/irq_bspsupport.rel \
56    ../../../libcpu/@RTEMS_CPU@/mpc6xx/mmu.rel \
57    ../../../libcpu/@RTEMS_CPU@/mpc6xx/timer.rel
58
59
60EXTRA_DIST = times
61
62include $(srcdir)/preinstall.am
63include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.