source: rtems/c/src/lib/libcpu/powerpc/Makefile.am @ 11fe8c59

5
Last change on this file since 11fe8c59 was 11fe8c59, checked in by Sebastian Huber <sebastian.huber@…>, on 03/26/18 at 04:18:51

bsps/powerpc: Move MMU support to bsps

This patch is a part of the BSP source reorganization.

Update #3285.

  • Property mode set to 100644
File size: 1.7 KB
Line 
1ACLOCAL_AMFLAGS = -I ../../../aclocal
2
3include $(top_srcdir)/../../../automake/compile.am
4
5EXTRA_DIST =
6
7noinst_PROGRAMS =
8
9EXTRA_DIST += ppc403/README ppc403/vectors/README
10if ppc4xx
11# ppc403/clock
12noinst_PROGRAMS += ppc403/clock.rel
13ppc403_clock_rel_SOURCES = ppc403/clock/clock.c
14ppc403_clock_rel_CPPFLAGS = $(AM_CPPFLAGS)
15ppc403_clock_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
16
17# ppc403/console
18noinst_PROGRAMS += ppc403/console.rel
19if ppc405
20ppc403_console_rel_SOURCES = ppc403/console/console405.c
21else
22ppc403_console_rel_SOURCES = ppc403/console/console.c
23endif
24ppc403_console_rel_CPPFLAGS = $(AM_CPPFLAGS)
25ppc403_console_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
26
27# ppc403/tty_drv
28if ppc405
29noinst_PROGRAMS += ppc403/tty_drv.rel
30ppc403_tty_drv_rel_SOURCES = ppc403/tty_drv/tty_drv.c ppc403/tty_drv/tty_drv.h
31ppc403_tty_drv_rel_CPPFLAGS = $(AM_CPPFLAGS)
32ppc403_tty_drv_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
33endif
34
35endif # ppc4xx
36
37if ppc405
38
39## ppc4xx/include
40endif # ppc405
41
42if mpc6xx
43
44# mpc6xx/clock
45noinst_PROGRAMS += mpc6xx/clock.rel
46mpc6xx_clock_rel_SOURCES = mpc6xx/clock/c_clock.c mpc6xx/clock/c_clock.h
47mpc6xx_clock_rel_CPPFLAGS = $(AM_CPPFLAGS)
48mpc6xx_clock_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
49
50# mpc6xx/altivec
51noinst_PROGRAMS += mpc6xx/altivec.rel
52mpc6xx_altivec_rel_SOURCES = mpc6xx/altivec/vec_sup.c mpc6xx/altivec/vec_sup_asm.S
53mpc6xx_altivec_rel_CPPFLAGS = $(AM_CPPFLAGS)
54mpc6xx_altivec_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
55endif
56EXTRA_DIST      += mpc6xx/altivec/README
57
58# e500/clock
59if e500_clock
60noinst_PROGRAMS += e500/clock.rel
61e500_clock_rel_SOURCES = mpc6xx/clock/c_clock.c mpc6xx/clock/c_clock.h
62e500_clock_rel_CPPFLAGS = $(AM_CPPFLAGS)
63e500_clock_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
64endif
65
66include $(top_srcdir)/../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.