source: rtems/c/src/lib/libbsp/powerpc/ep1a/Makefile.am @ 3427cdbf

4.104.115
Last change on this file since 3427cdbf 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.7 KB
Line 
1##
2## Makefile.am,v 1.8.4.1 2003/02/20 21:55:34 joel Exp
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
20nodist_include_HEADERS += ../../shared/include/coverhd.h
21
22###
23dist_project_lib_DATA += startup/linkcmds
24
25noinst_LIBRARIES = libbsp.a
26
27startup_SOURCES = startup/bspstart.c ../../shared/bootcard.c \
28    ../../shared/bsppost.c ../../shared/bsppredriverhook.c \
29    ../../powerpc/shared/startup/bspgetworkarea.c ../../shared/bsplibc.c \
30    ../../powerpc/shared/startup/sbrk.c \
31    ../../shared/bspclean.c ../../shared/gnatinstallhandler.c \
32    ../../powerpc/shared/startup/pgtbl_setup.c \
33    ../../powerpc/shared/startup/pgtbl_activate.c \
34    ../../powerpc/shared/showbats.c
35
36pclock_SOURCES = ../../powerpc/shared/clock/p_clock.c
37
38include_bsp_HEADERS = ../../powerpc/shared/console/uart.h \
39    ../../powerpc/shared/motorola/motorola.h \
40    ../../powerpc/shared/residual/residual.h \
41    ../../powerpc/shared/residual/pnp.h \
42    ../../powerpc/shared/console/consoleIo.h console/rsPMCQ1.h
43console_SOURCES = console/console.c console/ns16550cfg.c \
44    console/mc68360_scc.c console/rsPMCQ1.c console/alloc360.c \
45    console/init68360.c
46
47include_bsp_HEADERS += ../../powerpc/shared/openpic/openpic.h
48openpic_SOURCES = ../../powerpc/shared/openpic/openpic.h \
49    ../../powerpc/shared/openpic/openpic.c
50
51include_bsp_HEADERS += ../../powerpc/shared/pci/pci.h
52pci_SOURCES = pci/no_host_bridge.c ../../powerpc/shared/pci/pci.c \
53    ../../powerpc/shared/pci/pcifinddevice.c
54
55include_bsp_HEADERS += ../../powerpc/shared/irq/irq.h \
56        ../../../libcpu/@RTEMS_CPU@/@exceptions@/bspsupport/ppc_exc_bspsupp.h \
57        ../../../libcpu/@RTEMS_CPU@/@exceptions@/bspsupport/vectors.h \
58        ../../../libcpu/@RTEMS_CPU@/@exceptions@/bspsupport/irq_supp.h
59irq_SOURCES = irq/irq_init.c irq/openpic_xxx_irq.c ../../powerpc/shared/irq/i8259.c
60
61include_bsp_HEADERS += ../../shared/vmeUniverse/vmeUniverse.h \
62    vme/VMEConfig.h \
63    ../../shared/vmeUniverse/vme_am_defs.h \
64    ../../shared/vmeUniverse/VME.h \
65    ../../shared/vmeUniverse/vmeUniverseDMA.h\
66    ../../shared/vmeUniverse/bspVmeDmaList.h\
67    ../../shared/vmeUniverse/VMEDMA.h
68
69vme_SOURCES = ../../shared/vmeUniverse/vmeUniverse.c \
70    ../../shared/vmeUniverse/bspVmeDmaList.c \
71    ../shared/vme/vmeconfig.c \
72    ../shared/vme/vme_universe.c \
73    ../../shared/vmeUniverse/vme_am_defs.h
74
75EXTRA_DIST = start/start.S
76start.$(OBJEXT): start/start.S
77        $(CPPASCOMPILE) -o $@ -c $<
78project_lib_DATA = start.$(OBJEXT)
79
80EXTRA_DIST += ../../powerpc/shared/start/rtems_crti.S
81rtems_crti.$(OBJEXT): ../../powerpc/shared/start/rtems_crti.S
82        $(CPPASCOMPILE) -o $@ -c $<
83project_lib_DATA += rtems_crti.$(OBJEXT)
84
85libbsp_a_SOURCES = $(startup_SOURCES) $(pclock_SOURCES) $(console_SOURCES) \
86    $(openpic_SOURCES) $(pci_SOURCES) $(irq_SOURCES) $(vme_SOURCES)
87
88libbsp_a_LIBADD = \
89    ../../../libcpu/@RTEMS_CPU@/shared/cpuIdent.rel \
90    ../../../libcpu/@RTEMS_CPU@/shared/stack.rel \
91    ../../../libcpu/@RTEMS_CPU@/@exceptions@/rtems-cpu.rel \
92    ../../../libcpu/@RTEMS_CPU@/mpc6xx/clock.rel \
93    ../../../libcpu/@RTEMS_CPU@/@exceptions@/raw_exception.rel \
94    ../../../libcpu/@RTEMS_CPU@/@exceptions@/exc_bspsupport.rel \
95    ../../../libcpu/@RTEMS_CPU@/@exceptions@/irq_bspsupport.rel \
96    ../../../libcpu/@RTEMS_CPU@/mpc6xx/mmu.rel \
97    ../../../libcpu/@RTEMS_CPU@/mpc6xx/timer.rel
98
99include $(srcdir)/preinstall.am
100include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.