source: rtems/c/src/lib/libbsp/sh/gensh1/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: 1.7 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 += ../../shared/include/tm27.h
11
12nodist_include_HEADERS = include/bspopts.h
13nodist_include_bsp_HEADERS = ../../shared/include/bootcard.h
14DISTCLEANFILES = include/bspopts.h
15
16include_HEADERS += include/coverhd.h
17
18noinst_LIBRARIES = libbspstart.a
19libbspstart_a_SOURCES = start/start.S
20project_lib_DATA = start.$(OBJEXT)
21
22dist_project_lib_DATA += startup/linkcmds
23
24noinst_LIBRARIES += libbsp.a
25libbsp_a_SOURCES =
26
27SHGEN = $(PROJECT_TOPdir)/tools/cpu/sh/shgen
28
29scitab.c: $(SHGEN)
30        $(SHGEN) -H @CPU_CLOCK_RATE_HZ@ sci > $@
31BUILT_SOURCES = scitab.c
32CLEANFILES = scitab.c
33
34# startup
35libbsp_a_SOURCES += ../../shared/bsplibc.c ../../shared/bsppost.c \
36    ../../shared/bsppredriverhook.c ../shared/bspstart.c \
37    ../../shared/bspclean.c ../../shared/bspreset_fatal.c \
38    ../../shared/bspgetworkarea.c ../../shared/bsppretaskinghook.c \
39    ../../shared/sbrk.c ../../shared/bootcard.c ../shared/bsphwinit.c \
40    ../../shared/gnatinstallhandler.c
41# scitab
42libbsp_a_SOURCES += scitab.c
43# console
44libbsp_a_SOURCES += ../../sh/shared/console.c
45# debugio
46libbsp_a_SOURCES += ../../shared/dummy_printk_support.c
47
48libbsp_a_LIBADD = \
49    ../../../libcpu/@RTEMS_CPU@/@RTEMS_CPU_MODEL@/clock.rel \
50    ../../../libcpu/@RTEMS_CPU@/@RTEMS_CPU_MODEL@/timer.rel \
51    ../../../libcpu/@RTEMS_CPU@/@RTEMS_CPU_MODEL@/sci.rel \
52    ../../../libcpu/@RTEMS_CPU@/@RTEMS_CPU_MODEL@/delay.rel \
53    ../../../libcpu/@RTEMS_CPU@/@RTEMS_CPU_MODEL@/score.rel
54
55EXTRA_DIST = times
56
57include $(srcdir)/preinstall.am
58include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.