source: rtems/c/src/lib/libbsp/mips/csb350/Makefile.am @ e58e29fd

5
Last change on this file since e58e29fd was e58e29fd, checked in by Sebastian Huber <sebastian.huber@…>, on 11/24/17 at 06:58:55

Remove coverhd.h

This header file contained timing overhead values which are hard to
maintain.

Update #3254.

  • Property mode set to 100644
File size: 2.4 KB
Line 
1ACLOCAL_AMFLAGS = -I ../../../../aclocal
2
3include $(top_srcdir)/../../../../automake/compile.am
4
5include_bspdir = $(includedir)/bsp
6
7dist_project_lib_DATA = bsp_specs
8
9include_HEADERS = include/bsp.h
10include_HEADERS += include/tm27.h
11include_bsp_HEADERS = ../shared/liblnk/regs.h
12#isr
13include_bsp_HEADERS += ../../shared/include/irq-generic.h
14include_bsp_HEADERS += ../../shared/include/irq-info.h
15include_bsp_HEADERS += include/irq.h
16
17nodist_include_HEADERS = include/bspopts.h
18nodist_include_bsp_HEADERS = ../../shared/include/bootcard.h
19nodist_include_bsp_HEADERS += ../../shared/include/console-polled.h
20DISTCLEANFILES = include/bspopts.h
21
22noinst_PROGRAMS =
23
24noinst_LIBRARIES = libbspstart.a
25libbspstart_a_SOURCES = start/start.S ../shared/liblnk/regs.h
26project_lib_DATA = start.$(OBJEXT)
27
28dist_project_lib_DATA += startup/linkcmds
29
30noinst_LIBRARIES += libbsp.a
31libbsp_a_SOURCES =
32
33# startup
34libbsp_a_SOURCES += ../../shared/bspclean.c
35libbsp_a_SOURCES += ../../shared/bsppredriverhook.c
36libbsp_a_SOURCES += startup/bspreset.c
37libbsp_a_SOURCES += ../../shared/bspgetworkarea.c
38libbsp_a_SOURCES += startup/bspstart.c
39libbsp_a_SOURCES += ../../shared/bootcard.c
40libbsp_a_SOURCES += ../../shared/getentropy-cpucounter.c
41libbsp_a_SOURCES += ../../shared/sbrk.c
42# clock
43libbsp_a_SOURCES += clock/clockdrv.c
44libbsp_a_SOURCES += ../../shared/clockdrv_shell.h
45# console
46libbsp_a_SOURCES += console/console-io.c
47libbsp_a_SOURCES += ../../shared/console-polled.c
48# timer
49libbsp_a_SOURCES += timer/timer.c
50#isr
51libbsp_a_SOURCES += ../../shared/src/irq-generic.c
52libbsp_a_SOURCES += ../../shared/src/irq-legacy.c
53libbsp_a_SOURCES += ../../shared/src/irq-info.c
54libbsp_a_SOURCES += ../../shared/src/irq-shell.c
55libbsp_a_SOURCES += ../../shared/src/irq-server.c
56libbsp_a_SOURCES += ../shared/irq/vectorexceptions.c
57libbsp_a_SOURCES += ../shared/irq/irq.c
58libbsp_a_SOURCES += irq/vectorisrs.c
59libbsp_a_SOURCES += ../shared/irq/interruptmask.c
60
61if HAS_NETWORKING
62network_CPPFLAGS = -D__INSIDE_RTEMS_BSD_TCPIP_STACK__
63noinst_PROGRAMS += network.rel
64network_rel_SOURCES = network/network.c
65network_rel_CPPFLAGS = $(AM_CPPFLAGS) $(network_CPPFLAGS)
66network_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
67endif
68
69libbsp_a_LIBADD  = ../../../libcpu/mips/shared/cache.rel
70libbsp_a_LIBADD += ../../../libcpu/mips/shared/interrupts.rel
71
72if HAS_NETWORKING
73libbsp_a_LIBADD += network.rel
74endif
75
76include $(srcdir)/preinstall.am
77include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.