source: rtems/c/src/lib/libbsp/powerpc/score603e/Makefile.am @ 8e230e6

4.9
Last change on this file since 8e230e6 was 31a5ec8, checked in by Jennifer Averett <Jennifer.Averett@…>, on 05/05/09 at 16:18:06

2009-05-05 Jennifer Averett <jennifer.averett@…>

  • Makefile.am, README, configure.ac, preinstall.am, PCI_bus/PCI.c, PCI_bus/PCI.h, PCI_bus/flash.c, PCI_bus/universe.c, console/85c30.c, console/85c30.h, console/console.c, console/consolebsp.h, console/tbl85c30.c, include/bsp.h, include/coverhd.h, include/gen2.h, include/irq-config.h, include/tm27.h, irq/FPGA.c, irq/irq.h, irq/irq_init.c, start/start.S, startup/Hwr_init.c, startup/bspstart.c, timer/timer.c, tod/tod.c: Updated and tested with the latest powerpc isr source
  • irq/no_pic.c: New file.
  • irq/irq.c, startup/genpvec.c, startup/setvec.c, startup/vmeintr.c: Removed.
  • Property mode set to 100644
File size: 2.6 KB
Line 
1##
2## $Id$
3##
4
5ACLOCAL_AMFLAGS = -I ../../../../aclocal
6
7include $(top_srcdir)/../../../../automake/compile.am
8include $(top_srcdir)/../../bsp.am
9
10dist_project_lib_DATA = bsp_specs
11
12include_HEADERS = include/bsp.h
13include_HEADERS += include/tm27.h
14
15nodist_include_HEADERS = include/bspopts.h
16DISTCLEANFILES = include/bspopts.h
17
18include_bspdir = $(includedir)/bsp
19
20include_HEADERS += ../../shared/tod.h
21include_HEADERS += include/coverhd.h include/gen2.h
22
23###
24dist_project_lib_DATA += startup/linkcmds
25
26startup_SOURCES = ../../shared/bspclean.c ../../shared/bsplibc.c \
27    startup/bspstart.c ../../shared/bootcard.c \
28    ../../shared/sbrk.c startup/Hwr_init.c \
29    ../../shared/gnatinstallhandler.c \
30    ../../powerpc/shared/showbats.c
31
32pclock_SOURCES = ../../powerpc/shared/clock/p_clock.c
33console_SOURCES = console/85c30.c console/85c30.h console/console.c \
34    console/tbl85c30.c console/consolebsp.h
35
36include_bsp_HEADERS = ../../powerpc/shared/pci/pci.h \
37        PCI_bus/PCI.h \
38        ../../powerpc/shared/residual/residual.h \
39        ../../powerpc/shared/residual/pnp.h \
40        ../../powerpc/shared/console/consoleIo.h
41
42pci_SOURCES = PCI_bus/flash.c ../../powerpc/shared/pci/pci.c \
43    ../../powerpc/shared/pci/pcifinddevice.c  PCI_bus/PCI.c  PCI_bus/universe.c
44
45include_bsp_HEADERS += irq/irq.h \
46        ../../../libcpu/@RTEMS_CPU@/@exceptions@/bspsupport/ppc_exc_bspsupp.h \
47        ../../../libcpu/@RTEMS_CPU@/@exceptions@/bspsupport/vectors.h \
48        ../../../libcpu/@RTEMS_CPU@/@exceptions@/bspsupport/irq_supp.h
49
50irq_SOURCES =  irq/no_pic.c irq/irq_init.c \
51    irq/FPGA.c
52
53vectors_SOURCES =
54
55EXTRA_DIST = start/start.S
56start.$(OBJEXT): start/start.S
57        $(CPPASCOMPILE) -o $@ -c $<
58project_lib_DATA = start.$(OBJEXT)
59
60EXTRA_DIST += ../../powerpc/shared/start/rtems_crti.S
61rtems_crti.$(OBJEXT): ../../powerpc/shared/start/rtems_crti.S
62        $(CPPASCOMPILE) -o $@ -c $<
63project_lib_DATA += rtems_crti.$(OBJEXT)
64
65noinst_LIBRARIES = libbsp.a
66libbsp_a_SOURCES = $(pclock_SOURCES) $(console_SOURCES) $(irq_SOURCES) \
67    $(pci_SOURCES) $(vectors_SOURCES) $(startup_SOURCES)
68
69libbsp_a_LIBADD = \
70    ../../../libcpu/@RTEMS_CPU@/shared/cpuIdent.rel \
71    ../../../libcpu/@RTEMS_CPU@/shared/stack.rel \
72    ../../../libcpu/@RTEMS_CPU@/@exceptions@/rtems-cpu.rel \
73    ../../../libcpu/@RTEMS_CPU@/mpc6xx/clock.rel \
74    ../../../libcpu/@RTEMS_CPU@/@exceptions@/exc_bspsupport.rel \
75    ../../../libcpu/@RTEMS_CPU@/@exceptions@/irq_bspsupport.rel \
76    ../../../libcpu/@RTEMS_CPU@/@exceptions@/raw_exception.rel \
77     ../../../libcpu/@RTEMS_CPU@/mpc6xx/mmu.rel \
78    ../../../libcpu/@RTEMS_CPU@/mpc6xx/timer.rel
79
80include $(srcdir)/preinstall.am
81include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.