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

4.104.115
Last change on this file since e94666d was e94666d, checked in by Ralf Corsepius <ralf.corsepius@…>, on 09/29/08 at 03:43:47

2008-09-29 Ralf Corsépius <ralf.corsepius@…>

  • Makefile.am: Move noinst_LIBRARIES = libbsp.a before its components.
  • Property mode set to 100644
File size: 3.4 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 += include/coverhd.h include/gen2.h
23
24###
25dist_project_lib_DATA += startup/linkcmds
26
27noinst_LIBRARIES = libbsp.a
28
29startup_SOURCES = startup/bspclean.c ../../shared/bsplibc.c \
30    startup/bspstart.c ../../powerpc/shared/startup/bspgetworkarea.c \
31    ../../powerpc/shared/startup/sbrk.c ../../shared/bootcard.c \
32    startup/Hwr_init.c startup/genpvec.c ../../shared/gnatinstallhandler.c \
33    ../../powerpc/shared/showbats.c \
34    ../../shared/bsppretaskinghook.c
35
36pclock_SOURCES = ../../powerpc/shared/clock/p_clock.c
37console_SOURCES = console/85c30.c console/85c30.h console/console.c \
38    console/tbl85c30.c console/consolebsp.h
39
40include_bsp_HEADERS = ../../powerpc/shared/pci/pci.h \
41    PCI_bus/PCI.h \
42    ../../powerpc/shared/residual/residual.h \
43    ../../powerpc/shared/residual/pnp.h \
44    ../../powerpc/shared/openpic/openpic.h \
45    ../../powerpc/shared/console/consoleIo.h
46pci_SOURCES = pci/no_host_bridge.c ../../powerpc/shared/pci/pci.c \
47    ../../powerpc/shared/pci/pcifinddevice.c  PCI_bus/PCI.c  PCI_bus/universe.c
48
49include_bsp_HEADERS += irq/irq.h \
50    ../../../libcpu/@RTEMS_CPU@/@exceptions@/bspsupport/ppc_exc_bspsupp.h \
51    ../../../libcpu/@RTEMS_CPU@/@exceptions@/bspsupport/vectors.h \
52    ../../../libcpu/@RTEMS_CPU@/@exceptions@/bspsupport/irq_supp.h
53irq_SOURCES = irq/FPGA.c irq/irq.c ../../powerpc/shared/irq/irq_asm.S
54
55include_bsp_HEADERS += ../../powerpc/shared/vectors/vectors.h
56vectors_SOURCES = ../../powerpc/shared/vectors/vectors_init.c \
57    ../../powerpc/shared/vectors/vectors.S
58
59include_bsp_HEADERS += ../../shared/vmeUniverse/vmeUniverse.h \
60    ../../shared/vmeUniverse/vme_am_defs.h \
61    ../../shared/vmeUniverse/VME.h \
62    vme/VMEConfig.h \
63    ../../powerpc/shared/motorola/motorola.h \
64    ../../shared/vmeUniverse/vmeUniverseDMA.h\
65    ../../shared/vmeUniverse/bspVmeDmaList.h\
66    ../../shared/vmeUniverse/VMEDMA.h
67vme_SOURCES = \
68    ../../shared/vmeUniverse/bspVmeDmaList.c \
69    ../../shared/vmeUniverse/vme_am_defs.h \
70        ../shared/vme/vmeconfig.c
71
72EXTRA_DIST = start/start.S
73start.$(OBJEXT): start/start.S
74        $(CPPASCOMPILE) -o $@ -c $<
75project_lib_DATA = start.$(OBJEXT)
76
77EXTRA_DIST += ../../powerpc/shared/start/rtems_crti.S
78rtems_crti.$(OBJEXT): ../../powerpc/shared/start/rtems_crti.S
79        $(CPPASCOMPILE) -o $@ -c $<
80project_lib_DATA += rtems_crti.$(OBJEXT)
81
82libbsp_a_SOURCES = $(pclock_SOURCES) $(console_SOURCES) $(irq_SOURCES) \
83    $(pci_SOURCES) $(vectors_SOURCES) $(startup_SOURCES) $(vme_SOURCES)
84
85libbsp_a_LIBADD = \
86    ../../../libcpu/@RTEMS_CPU@/shared/cpuIdent.rel \
87    ../../../libcpu/@RTEMS_CPU@/shared/stack.rel \
88    ../../../libcpu/@RTEMS_CPU@/@exceptions@/rtems-cpu.rel \
89    ../../../libcpu/@RTEMS_CPU@/mpc6xx/clock.rel \
90    ../../../libcpu/@RTEMS_CPU@/@exceptions@/exc_bspsupport.rel \
91    ../../../libcpu/@RTEMS_CPU@/@exceptions@/raw_exception.rel \
92     ../../../libcpu/@RTEMS_CPU@/mpc6xx/mmu.rel \
93    ../../../libcpu/@RTEMS_CPU@/mpc6xx/timer.rel
94
95include $(srcdir)/preinstall.am
96include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.