source: rtems/c/src/lib/libbsp/powerpc/haleakala/Makefile.am @ 4ba8866

4.104.115
Last change on this file since 4ba8866 was 4ba8866, checked in by Ralf Corsepius <ralf.corsepius@…>, on 09/29/08 at 01:27:11

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

  • Makefile.am: Remove noinst_PROGRAMS (Unused).
  • Property mode set to 100644
File size: 2.2 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 += include/coverhd.h
22
23EXTRA_DIST = ../../powerpc/shared/start/rtems_crti.S
24rtems_crti.$(OBJEXT): ../../powerpc/shared/start/rtems_crti.S
25        $(CPPASCOMPILE) -o $@ -c $<
26project_lib_DATA = rtems_crti.$(OBJEXT)
27
28dist_project_lib_DATA += startup/linkcmds
29
30startup_SOURCES = ../../shared/bspclean.c ../../shared/bsplibc.c \
31    ../../shared/bspreset_fatal.c ../../shared/bsppost.c \
32    startup/bspstart.c ../../shared/bootcard.c \
33    ../../shared/bsppredriverhook.c ../../shared/bspgetworkarea.c \
34    ../../shared/bsppretaskinghook.c ../../shared/sbrk.c \
35    ../../shared/gnatinstallhandler.c
36
37dlentry_SOURCES = dlentry/dlentry.S
38
39include_bsp_HEADERS = ../../powerpc/shared/console/uart.h \
40    ../../powerpc/shared/console/consoleIo.h
41console_SOURCES = ../../powerpc/shared/console/uart.c \
42    ../../powerpc/shared/console/console.c
43
44include_bsp_HEADERS += irq/irq.h \
45    ../../../libcpu/@RTEMS_CPU@/@exceptions@/bspsupport/vectors.h \
46    ../../../libcpu/@RTEMS_CPU@/@exceptions@/bspsupport/irq_supp.h \
47    ../../../libcpu/@RTEMS_CPU@/@exceptions@/bspsupport/ppc_exc_bspsupp.h
48
49irq_SOURCES = irq/irq_init.c irq/irq.c
50
51noinst_LIBRARIES = libbsp.a
52libbsp_a_SOURCES = $(startup_SOURCES) $(dlentry_SOURCES) $(console_SOURCES) \
53    $(irq_SOURCES)
54
55libbsp_a_LIBADD = ../../../libcpu/@RTEMS_CPU@/@exceptions@/rtems-cpu.rel \
56    ../../../libcpu/@RTEMS_CPU@/@exceptions@/raw_exception.rel \
57    ../../../libcpu/@RTEMS_CPU@/@exceptions@/exc_bspsupport.rel \
58    ../../../libcpu/@RTEMS_CPU@/@exceptions@/irq_bspsupport.rel \
59    ../../../libcpu/@RTEMS_CPU@/shared/cpuIdent.rel \
60    ../../../libcpu/@RTEMS_CPU@/ppc403/clock.rel \
61    ../../../libcpu/@RTEMS_CPU@/ppc403/timer.rel
62
63EXTRA_DIST += times
64
65include $(srcdir)/preinstall.am
66include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.