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

4.115
Last change on this file since 9b4422a2 was 9b4422a2, checked in by Joel Sherrill <joel.sherrill@…>, on 05/03/12 at 15:09:24

Remove All CVS Id Strings Possible Using a Script

Script does what is expected and tries to do it as
smartly as possible.

+ remove occurrences of two blank comment lines

next to each other after Id string line removed.

+ remove entire comment blocks which only exited to

contain CVS Ids

+ If the processing left a blank line at the top of

a file, it was removed.

  • Property mode set to 100644
File size: 2.5 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
19DISTCLEANFILES = include/bspopts.h
20nodist_include_HEADERS += ../../shared/include/coverhd.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/bsplibc.c
36libbsp_a_SOURCES += ../../shared/bsppredriverhook.c
37libbsp_a_SOURCES += ../../shared/bsppost.c
38libbsp_a_SOURCES += startup/bspreset.c
39libbsp_a_SOURCES += ../../shared/bsppretaskinghook.c
40libbsp_a_SOURCES += ../../shared/bspgetworkarea.c
41libbsp_a_SOURCES += startup/bspstart.c
42libbsp_a_SOURCES += ../../shared/bootcard.c
43libbsp_a_SOURCES += ../../shared/sbrk.c
44# clock
45libbsp_a_SOURCES += clock/clockdrv.c
46libbsp_a_SOURCES += ../../shared/clockdrv_shell.h
47# console
48libbsp_a_SOURCES += console/console-io.c
49libbsp_a_SOURCES += ../../shared/console-polled.c
50# timer
51libbsp_a_SOURCES += timer/timer.c
52#isr
53libbsp_a_SOURCES += ../../shared/src/irq-generic.c
54libbsp_a_SOURCES += ../../shared/src/irq-legacy.c
55libbsp_a_SOURCES += ../../shared/src/irq-info.c
56libbsp_a_SOURCES += ../../shared/src/irq-shell.c
57libbsp_a_SOURCES += ../../shared/src/irq-server.c
58libbsp_a_SOURCES += ../shared/irq/vectorexceptions.c
59libbsp_a_SOURCES += ../shared/irq/irq.c
60libbsp_a_SOURCES += ../shared/irq/maxvectors.c
61libbsp_a_SOURCES += irq/vectorisrs.c
62libbsp_a_SOURCES += ../shared/irq/interruptmask.c
63
64if HAS_NETWORKING
65network_CPPFLAGS = -D__INSIDE_RTEMS_BSD_TCPIP_STACK__
66noinst_PROGRAMS += network.rel
67network_rel_SOURCES = network/network.c
68network_rel_CPPFLAGS = $(AM_CPPFLAGS) $(network_CPPFLAGS)
69network_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
70endif
71
72libbsp_a_LIBADD  = ../../../libcpu/mips/shared/cache.rel
73libbsp_a_LIBADD += ../../../libcpu/mips/shared/interrupts.rel
74
75if HAS_NETWORKING
76libbsp_a_LIBADD += network.rel
77endif
78
79include $(srcdir)/preinstall.am
80include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.