source: rtems/c/src/lib/libbsp/powerpc/score603e/Makefile.am @ 222f8684

4.104.115
Last change on this file since 222f8684 was cd94be4, checked in by Ralf Corsepius <ralf.corsepius@…>, on 06/02/09 at 13:21:04

2009-06-02 Ralf Corsépius <ralf.corsepius@…>

  • Makefile.am: Fix breakage having been introduced in previous patch.
  • Property mode set to 100644
File size: 2.8 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 += include/tm27.h
16
17nodist_include_HEADERS = include/bspopts.h
18nodist_include_bsp_HEADERS = ../../shared/include/bootcard.h
19DISTCLEANFILES = include/bspopts.h
20
21include_HEADERS += ../../shared/tod.h
22include_HEADERS += ../../shared/include/coverhd.h include/gen2.h
23
24###
25dist_project_lib_DATA += startup/linkcmds
26
27startup_SOURCES = ../../shared/bspclean.c ../../shared/bsplibc.c \
28    startup/bspstart.c ../../powerpc/shared/startup/bspgetworkarea.c \
29    ../../shared/bsppost.c  \
30    ../../shared/bootcard.c ../../shared/bsppretaskinghook.c \
31    startup/Hwr_init.c \
32    ../../powerpc/shared/startup/sbrk.c ../../shared/gnatinstallhandler.c \
33    ../../powerpc/shared/showbats.c
34
35pclock_SOURCES = ../../powerpc/shared/clock/p_clock.c
36console_SOURCES = console/85c30.c console/85c30.h console/console.c \
37    console/tbl85c30.c console/consolebsp.h
38
39include_bsp_HEADERS = ../../powerpc/shared/pci/pci.h \
40        PCI_bus/PCI.h \
41        ../../powerpc/shared/residual/residual.h \
42        ../../powerpc/shared/residual/pnp.h \
43        ../../powerpc/shared/console/consoleIo.h
44
45pci_SOURCES = PCI_bus/flash.c ../../powerpc/shared/pci/pci.c \
46    ../../powerpc/shared/pci/pcifinddevice.c  PCI_bus/PCI.c  PCI_bus/universe.c
47
48include_bsp_HEADERS += irq/irq.h \
49        ../../../libcpu/@RTEMS_CPU@/@exceptions@/bspsupport/ppc_exc_bspsupp.h \
50        ../../../libcpu/@RTEMS_CPU@/@exceptions@/bspsupport/vectors.h \
51        ../../../libcpu/@RTEMS_CPU@/@exceptions@/bspsupport/irq_supp.h
52
53irq_SOURCES =  irq/no_pic.c irq/irq_init.c \
54    irq/FPGA.c
55
56vectors_SOURCES =
57
58EXTRA_DIST = start/start.S
59start.$(OBJEXT): start/start.S
60        $(CPPASCOMPILE) -o $@ -c $<
61project_lib_DATA = start.$(OBJEXT)
62
63EXTRA_DIST += ../../powerpc/shared/start/rtems_crti.S
64rtems_crti.$(OBJEXT): ../../powerpc/shared/start/rtems_crti.S
65        $(CPPASCOMPILE) -o $@ -c $<
66project_lib_DATA += rtems_crti.$(OBJEXT)
67
68noinst_LIBRARIES = libbsp.a
69libbsp_a_SOURCES = $(pclock_SOURCES) $(console_SOURCES) $(irq_SOURCES) \
70    $(pci_SOURCES) $(vectors_SOURCES) $(startup_SOURCES)
71
72libbsp_a_LIBADD = \
73    ../../../libcpu/@RTEMS_CPU@/shared/cpuIdent.rel \
74    ../../../libcpu/@RTEMS_CPU@/shared/stack.rel \
75    ../../../libcpu/@RTEMS_CPU@/@exceptions@/rtems-cpu.rel \
76    ../../../libcpu/@RTEMS_CPU@/mpc6xx/clock.rel \
77    ../../../libcpu/@RTEMS_CPU@/@exceptions@/exc_bspsupport.rel \
78    ../../../libcpu/@RTEMS_CPU@/@exceptions@/irq_bspsupport.rel \
79    ../../../libcpu/@RTEMS_CPU@/@exceptions@/raw_exception.rel \
80     ../../../libcpu/@RTEMS_CPU@/mpc6xx/mmu.rel \
81    ../../../libcpu/@RTEMS_CPU@/mpc6xx/timer.rel
82
83include $(srcdir)/preinstall.am
84include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.