source: rtems/c/src/lib/libbsp/powerpc/virtex4/Makefile.am @ 010bf86

5
Last change on this file since 010bf86 was 010bf86, checked in by Chris Johns <chrisj@…>, on 01/04/18 at 07:54:29

bsps/powerpc: Use public include path

Update #3254.

  • Property mode set to 100644
File size: 2.0 KB
Line 
1
2ACLOCAL_AMFLAGS = -I ../../../../aclocal
3EXTRA_DIST =
4
5include $(top_srcdir)/../../../../automake/compile.am
6include $(top_srcdir)/../../bsp.am
7
8include_bspdir = $(includedir)/bsp
9
10dist_project_lib_DATA = bsp_specs
11
12# include
13include_HEADERS     = include/bsp.h
14include_HEADERS    += include/tm27.h
15
16include_bsp_HEADERS =
17
18nodist_include_HEADERS     = include/bspopts.h
19nodist_include_bsp_HEADERS = ../../shared/include/bootcard.h
20DISTCLEANFILES             = include/bspopts.h
21
22# start
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
30noinst_LIBRARIES = libbsp.a
31
32# startup
33libbsp_a_SOURCES = startup/bspclean.c \
34                   ../shared/startup/zerobss.c \
35                   ../../shared/bspgetworkarea.c \
36                   startup/bspstart.c \
37                   ../../shared/bootcard.c \
38                   ../../shared/getentropy-cpucounter.c \
39                   ../../shared/sbrk.c \
40                   ../../shared/gnatinstallhandler.c \
41                   ../shared/src/memcpy.c
42libbsp_a_SOURCES += ../../shared/bspreset.c
43
44# start
45libbsp_a_SOURCES += start/start.S
46
47# console
48libbsp_a_SOURCES += startup/dummy_console.c \
49                    ../../shared/dummy_printk_support.c
50
51# irq
52include_bsp_HEADERS += include/irq.h
53libbsp_a_SOURCES += irq/irq_init.c
54
55# mmu
56include_bsp_HEADERS += include/mmu.h
57libbsp_a_SOURCES += mmu/mmu.c
58
59libbsp_a_LIBADD = ../../../libcpu/@RTEMS_CPU@/@exceptions@/rtems-cpu.rel \
60                  ../../../libcpu/@RTEMS_CPU@/@exceptions@/exc_bspsupport.rel \
61                  ../../../libcpu/@RTEMS_CPU@/shared/cache.rel \
62                  ../../../libcpu/@RTEMS_CPU@/shared/cpuIdent.rel \
63                  ../../../libcpu/@RTEMS_CPU@/ppc403/clock.rel \
64                  ../../../libcpu/@RTEMS_CPU@/ppc403/timer.rel
65
66EXTRA_DIST += times
67
68include $(srcdir)/preinstall.am
69include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.