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

4.115
Last change on this file since afab2f7 was afab2f7, checked in by Ralf Corsepius <ralf.corsepius@…>, on 06/19/11 at 07:27:07

2011-06-19 Ralf Corsépius <ralf.corsepius@…>

  • Makefile.am: Fix broken path to clockdrv_shell.h.
  • 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
41libbsp_a_SOURCES += ../../shared/clockdrv_shell.h
42# console
43libbsp_a_SOURCES += console/console-io.c ../../shared/console-polled.c
44# timer
45libbsp_a_SOURCES += timer/timer.c
46
47if HAS_NETWORKING
48network_CPPFLAGS = -D__INSIDE_RTEMS_BSD_TCPIP_STACK__
49noinst_PROGRAMS += network.rel
50network_rel_SOURCES = network/network.c
51network_rel_CPPFLAGS = $(AM_CPPFLAGS) $(network_CPPFLAGS)
52network_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
53endif
54
55libbsp_a_LIBADD = \
56    ../../../libcpu/mips/shared/cache.rel \
57    ../../../libcpu/mips/shared/interrupts.rel \
58    ../../../libcpu/mips/au1x00/vectorisrs.rel
59if HAS_NETWORKING
60libbsp_a_LIBADD += network.rel
61endif
62
63include $(srcdir)/preinstall.am
64include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.