source: rtems/c/src/lib/libbsp/powerpc/virtex5/Makefile.am @ 6273201

4.115
Last change on this file since 6273201 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.1 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
9# include
10include_HEADERS     = include/bsp.h
11include_HEADERS    += ../../shared/include/tm27.h
12
13include_bsp_HEADERS =
14
15nodist_include_HEADERS     = include/bspopts.h
16nodist_include_HEADERS    += include/coverhd.h
17nodist_include_bsp_HEADERS = ../../shared/include/bootcard.h
18DISTCLEANFILES             = include/bspopts.h
19
20# start
21noinst_LIBRARIES      = libbspstart.a
22libbspstart_a_SOURCES = ../../powerpc/shared/start/rtems_crti.S
23project_lib_DATA      = rtems_crti.$(OBJEXT)
24
25dist_project_lib_DATA += startup/linkcmds
26
27noinst_LIBRARIES += libbsp.a
28
29# startup
30libbsp_a_SOURCES = startup/bspclean.c \
31                   ../shared/startup/zerobss.c \
32                   ../../shared/bsplibc.c \
33                   ../../shared/bspgetworkarea.c \
34                   ../../shared/bsppost.c \
35                   startup/bspstart.c \
36                   ../../shared/bootcard.c \
37                   ../../shared/sbrk.c \
38                   ../../shared/gnatinstallhandler.c
39
40# start
41libbsp_a_SOURCES += startup/start.S
42
43# clock & timer
44libbsp_a_SOURCES += ../../../libcpu/@RTEMS_CPU@/ppc403/clock/clock.c
45libbsp_a_SOURCES += ../../../libcpu/@RTEMS_CPU@/ppc403/timer/timer.c
46
47# console
48libbsp_a_SOURCES += startup/dummy_console.c \
49                    ../../shared/dummy_printk_support.c
50
51# irq
52include_bsp_HEADERS += include/irq.h
53libbsp_a_SOURCES += irq/irq_init.c
54
55#vectors
56include_bsp_HEADERS += ../../../libcpu/@RTEMS_CPU@/@exceptions@/bspsupport/vectors.h
57include_bsp_HEADERS += ../../../libcpu/@RTEMS_CPU@/@exceptions@/bspsupport/irq_supp.h
58
59libbsp_a_LIBADD = ../../../libcpu/@RTEMS_CPU@/@exceptions@/rtems-cpu.rel \
60                  ../../../libcpu/@RTEMS_CPU@/@exceptions@/exc_bspsupport.rel \
61                  ../../../libcpu/@RTEMS_CPU@/shared/cache.rel \
62                  ../../../libcpu/@RTEMS_CPU@/shared/cpuIdent.rel
63
64EXTRA_DIST = times
65
66include $(srcdir)/preinstall.am
67include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.