source: rtems/c/src/lib/libbsp/m68k/mcf5329/Makefile.am @ a8777397

4.115
Last change on this file since a8777397 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: 1.8 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
11
12nodist_include_HEADERS = include/bspopts.h
13nodist_include_bsp_HEADERS = ../../shared/include/bootcard.h
14DISTCLEANFILES = include/bspopts.h
15noinst_PROGRAMS =
16
17include_HEADERS += ../../shared/include/coverhd.h
18
19noinst_LIBRARIES = libbspstart.a
20libbspstart_a_SOURCES = start/start.S
21project_lib_DATA = start.$(OBJEXT)
22
23dist_project_lib_DATA += startup/linkcmds startup/linkcmdsflash
24
25noinst_LIBRARIES += libbsp.a
26libbsp_a_SOURCES =
27
28# startup
29libbsp_a_SOURCES += ../../shared/bspclean.c ../../shared/bsppredriverhook.c \
30    ../../shared/bsplibc.c ../../shared/bsppost.c ../../shared/bspreset_loop.c \
31    ../../shared/bsppretaskinghook.c ../../shared/bspgetworkarea.c \
32    startup/init5329.c startup/bspstart.c startup/cfinit.c\
33    ../../shared/bootcard.c \
34    ../../shared/sbrk.c ../../shared/setvec.c \
35    ../../shared/gnatinstallhandler.c
36# clock
37libbsp_a_SOURCES += clock/clock.c ../../../shared/clockdrv_shell.h
38# console
39libbsp_a_SOURCES += console/console.c
40# timer
41libbsp_a_SOURCES += timer/timer.c
42
43if HAS_NETWORKING
44network_CPPFLAGS = -D__INSIDE_RTEMS_BSD_TCPIP_STACK__
45noinst_PROGRAMS += network.rel
46network_rel_SOURCES = network/network.c
47network_rel_CPPFLAGS = $(AM_CPPFLAGS) \
48    $(network_CPPFLAGS)
49network_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
50endif
51
52libbsp_a_LIBADD = \
53    ../../../libcpu/@RTEMS_CPU@/shared/cache.rel \
54    ../../../libcpu/@RTEMS_CPU@/shared/misc.rel \
55    ../../../libcpu/@RTEMS_CPU@/mcf532x/cachepd.rel
56
57if HAS_NETWORKING
58libbsp_a_LIBADD += network.rel
59endif
60
61include $(srcdir)/preinstall.am
62include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.