source: rtems/c/src/lib/libbsp/mips/csb350/Makefile.am @ 1783ee4

4.104.115
Last change on this file since 1783ee4 was 1783ee4, checked in by Joel Sherrill <joel.sherrill@…>, on 05/14/10 at 12:01:14

2010-05-14 Joel Sherrill <joel.sherrilL@…>

  • Makefile.am, preinstall.am: Fix typo.
  • Property mode set to 100644
File size: 1.8 KB
Line 
1##
2## $Id$
3##
4
5ACLOCAL_AMFLAGS = -I ../../../../aclocal
6
7include $(top_srcdir)/../../../../automake/compile.am
8
9include_bspdir = $(includedir)/bsp
10
11dist_project_lib_DATA = bsp_specs
12
13include_HEADERS = include/bsp.h
14include_HEADERS += include/tm27.h
15include_bsp_HEADERS = ../shared/liblnk/regs.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 ../../shared/bsplibc.c \
35    ../../shared/bsppredriverhook.c ../../shared/bsppost.c startup/bspreset.c \
36    ../../shared/bsppretaskinghook.c ../../shared/bspgetworkarea.c \
37    startup/bspstart.c ../../shared/bootcard.c ../../shared/sbrk.c \
38    ../../shared/gnatinstallhandler.c ../../shared/setvec.c
39# clock
40libbsp_a_SOURCES += clock/clockdrv.c ../../../shared/clockdrv_shell.h
41# console
42libbsp_a_SOURCES += console/console-io.c ../../shared/console-polled.c
43# timer
44libbsp_a_SOURCES += timer/timer.c
45
46if HAS_NETWORKING
47network_CPPFLAGS = -D__INSIDE_RTEMS_BSD_TCPIP_STACK__
48noinst_PROGRAMS += network.rel
49network_rel_SOURCES = network/network.c
50network_rel_CPPFLAGS = $(AM_CPPFLAGS) $(network_CPPFLAGS)
51network_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
52endif
53
54libbsp_a_LIBADD = \
55    ../../../libcpu/mips/shared/cache.rel \
56    ../../../libcpu/mips/shared/interrupts.rel \
57    ../../../libcpu/mips/au1x00/vectorisrs.rel
58if HAS_NETWORKING
59libbsp_a_LIBADD += network.rel
60endif
61
62include $(srcdir)/preinstall.am
63include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.