source: rtems/c/src/lib/libbsp/powerpc/virtex/Makefile.am @ 39ee704e

4.115
Last change on this file since 39ee704e 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.3 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
11include_HEADERS += include/xparameters_dflt.h
12if HAS_NETWORKING
13include_HEADERS += network/xiltemac.h
14endif
15
16nodist_include_HEADERS = include/bspopts.h
17nodist_include_bsp_HEADERS = ../../shared/include/bootcard.h
18DISTCLEANFILES = include/bspopts.h
19
20noinst_PROGRAMS =
21
22include_HEADERS += include/coverhd.h
23
24noinst_LIBRARIES = libbspstart.a
25libbspstart_a_SOURCES = ../../powerpc/shared/start/rtems_crti.S
26project_lib_DATA = rtems_crti.$(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 ../../shared/bspgetworkarea.c \
35    ../../shared/bspreset_fatal.c ../../shared/bsplibc.c \
36    ../../shared/bsppost.c startup/bspstart.c ../../shared/bootcard.c \
37    ../../shared/bsppredriverhook.c ../../shared/bsppretaskinghook.c \
38    ../../shared/sbrk.c ../../shared/gnatinstallhandler.c
39# dlentry
40libbsp_a_SOURCES += dlentry/dlentry.S
41# bspconsole
42libbsp_a_SOURCES += console/consolelite.c ../../shared/console.c \
43    ../../shared/console_select.c ../../shared/console_control.c \
44    ../../shared/console_read.c ../../shared/console_write.c
45include_bsp_HEADERS = include/opbintctrl.h
46# opbintctrl
47libbsp_a_SOURCES += opbintctrl/opbintctrl.c
48
49include_bsp_HEADERS += irq/irq.h
50# irq
51libbsp_a_SOURCES += irq/irq_init.c
52
53if HAS_NETWORKING
54network_CPPFLAGS = -D__INSIDE_RTEMS_BSD_TCPIP_STACK__
55network_CPPFLAGS += -D__BSD_VISIBLE
56noinst_PROGRAMS += network.rel
57network_rel_SOURCES = network/xiltemac.c
58network_rel_CPPFLAGS = $(AM_CPPFLAGS)
59network_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
60endif
61
62libbsp_a_LIBADD = \
63    ../../../libcpu/@RTEMS_CPU@/@exceptions@/rtems-cpu.rel \
64    ../../../libcpu/@RTEMS_CPU@/@exceptions@/exc_bspsupport.rel \
65    ../../../libcpu/@RTEMS_CPU@/shared/cache.rel \
66    ../../../libcpu/@RTEMS_CPU@/shared/cpuIdent.rel \
67    ../../../libcpu/@RTEMS_CPU@/ppc403/clock.rel \
68    ../../../libcpu/@RTEMS_CPU@/ppc403/timer.rel \
69    ../../../libcpu/@RTEMS_CPU@/ppc403/tty_drv.rel
70
71if HAS_NETWORKING
72libbsp_a_LIBADD += network.rel
73endif
74
75include $(srcdir)/preinstall.am
76include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.