source: rtems/c/src/lib/libcpu/bfin/Makefile.am @ 8f45d1d

4.104.114.95
Last change on this file since 8f45d1d was 30abd24, checked in by Joel Sherrill <joel.sherrill@…>, on 08/15/08 at 20:18:41

2008-08-15 Allan Hessenflow <allanh@…>

  • ChangeLog?, Makefile.am, README, configure.ac, preinstall.am, cache/cache.c, cache/cache_.h, clock/clock.c, clock/rtc.c, clock/tod.h, include/bf533.h, include/bf537.h, include/cecRegs.h, include/coreTimerRegs.h, include/dmaRegs.h, include/ebiuRegs.h, include/ethernetRegs.h, include/gpioRegs.h, include/memoryRegs.h, include/mmuRegs.h, include/ppiRegs.h, include/rtcRegs.h, include/sicRegs.h, include/spiRegs.h, include/sportRegs.h, include/timerRegs.h, include/twiRegs.h, include/uartRegs.h, include/wdogRegs.h, interrupt/interrupt.c, interrupt/interrupt.h, mmu/mmu.c, mmu/mmu.h, network/ethernet.c, network/ethernet.h, serial/spi.c, serial/spi.h, serial/sport.c, serial/sport.h, serial/twi.c, serial/twi.h, serial/uart.c, serial/uart.h, timer/timer.c: New files.
  • Property mode set to 100644
File size: 3.2 KB
Line 
1##
2## $Id$
3##
4
5ACLOCAL_AMFLAGS = -I ../../../aclocal
6
7include $(top_srcdir)/../../../automake/compile.am
8
9EXTRA_DIST =
10
11noinst_PROGRAMS =
12
13include_libcpudir = $(includedir)/libcpu
14include_libcpu_HEADERS =
15
16include_libcpu_HEADERS += include/bf533.h
17include_libcpu_HEADERS += include/bf537.h
18include_libcpu_HEADERS += include/cecRegs.h
19include_libcpu_HEADERS += include/memoryRegs.h
20include_libcpu_HEADERS += include/mmuRegs.h
21include_libcpu_HEADERS += include/sicRegs.h
22include_libcpu_HEADERS += include/ebiuRegs.h
23include_libcpu_HEADERS += include/ppiRegs.h
24include_libcpu_HEADERS += include/coreTimerRegs.h
25include_libcpu_HEADERS += include/wdogRegs.h
26include_libcpu_HEADERS += include/timerRegs.h
27include_libcpu_HEADERS += include/dmaRegs.h
28include_libcpu_HEADERS += include/ethernetRegs.h
29include_libcpu_HEADERS += include/uartRegs.h
30include_libcpu_HEADERS += include/sportRegs.h
31include_libcpu_HEADERS += include/twiRegs.h
32include_libcpu_HEADERS += include/spiRegs.h
33include_libcpu_HEADERS += include/rtcRegs.h
34include_libcpu_HEADERS += include/gpioRegs.h
35
36
37include_libcpu_HEADERS += ../shared/include/cache.h
38noinst_PROGRAMS += cache.rel
39cache_rel_SOURCES = cache/cache.c ../shared/src/cache_aligned_malloc.c \
40    ../shared/src/cache_manager.c cache/cache_.h
41cache_rel_CPPFLAGS = $(AM_CPPFLAGS) -I$(srcdir)/cache
42cache_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
43
44include_libcpu_HEADERS += mmu/mmu.h
45noinst_PROGRAMS += mmu.rel
46mmu_rel_SOURCES = mmu/mmu.c
47mmu_rel_CPPFLAGS = $(AM_CPPFLAGS)
48mmu_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
49
50include_libcpu_HEADERS += interrupt/interrupt.h
51noinst_PROGRAMS += interrupt.rel
52interrupt_rel_SOURCES = interrupt/interrupt.c
53interrupt_rel_CPPFLAGS = $(AM_CPPFLAGS)
54interrupt_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
55
56noinst_PROGRAMS += clock.rel
57clock_rel_SOURCES = clock/clock.c
58clock_rel_CPPFLAGS = $(AM_CPPFLAGS)
59clock_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
60
61noinst_PROGRAMS += rtc.rel
62rtc_rel_SOURCES = clock/rtc.c
63rtc_rel_CPPFLAGS = $(AM_CPPFLAGS)
64rtc_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
65
66include_libcpu_HEADERS += serial/uart.h
67noinst_PROGRAMS += uart.rel
68uart_rel_SOURCES = serial/uart.c
69uart_rel_CPPFLAGS = $(AM_CPPFLAGS)
70uart_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
71
72include_libcpu_HEADERS += serial/sport.h
73noinst_PROGRAMS += sport.rel
74sport_rel_SOURCES = serial/sport.c
75sport_rel_CPPFLAGS = $(AM_CPPFLAGS)
76sport_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
77
78include_libcpu_HEADERS += serial/spi.h
79noinst_PROGRAMS += spi.rel
80spi_rel_SOURCES = serial/spi.c
81spi_rel_CPPFLAGS = $(AM_CPPFLAGS)
82spi_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
83
84include_libcpu_HEADERS += serial/twi.h
85noinst_PROGRAMS += twi.rel
86twi_rel_SOURCES = serial/twi.c
87twi_rel_CPPFLAGS = $(AM_CPPFLAGS)
88twi_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
89
90noinst_PROGRAMS += timer.rel
91timer_rel_SOURCES = timer/timer.c
92timer_rel_CPPFLAGS = $(AM_CPPFLAGS)
93timer_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
94
95if HAS_NETWORKING
96## network
97include_libcpu_HEADERS += network/ethernet.h
98network_CPPFLAGS = -D__INSIDE_RTEMS_BSD_TCPIP_STACK__
99noinst_PROGRAMS += network.rel
100network_rel_SOURCES = network/ethernet.c
101network_rel_CPPFLAGS = $(AM_CPPFLAGS) $(network_CPPFLAGS)
102network_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
103endif
104
105include $(srcdir)/preinstall.am
106include $(top_srcdir)/../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.