source: rtems/c/src/lib/libbsp/sparc/erc32/Makefile.am @ e455a12

4.104.115
Last change on this file since e455a12 was e455a12, checked in by Joel Sherrill <joel.sherrill@…>, on 05/07/10 at 12:13:23

2010-04-27 Tiemen Schut <T.Schut@…>

PR 1506/bsps

  • console/console.c: Removed.
  • console/erc32_console.c: New file. Use shared console driver. Make sure interrupt support works. PPPD confirmed on sis.
  • Makefile.am: Reflect changes above.
  • Property mode set to 100644
File size: 2.0 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
15
16nodist_include_HEADERS = include/bspopts.h
17nodist_include_bsp_HEADERS = ../../shared/include/bootcard.h
18DISTCLEANFILES = include/bspopts.h
19
20noinst_PROGRAMS =
21
22SUBDIRS = . tools
23
24include_HEADERS += include/erc32.h
25include_HEADERS += ../../shared/include/coverhd.h
26
27noinst_LIBRARIES = libbspstart.a
28libbspstart_a_SOURCES = ../../sparc/shared/start.S
29project_lib_DATA = start.$(OBJEXT)
30
31dist_project_lib_DATA += startup/linkcmds
32
33noinst_LIBRARIES += libbsp.a
34libbsp_a_SOURCES =
35
36# startup
37libbsp_a_SOURCES += ../../shared/bspclean.c ../../shared/bsplibc.c \
38    ../../shared/bsppredriverhook.c ../../sparc/shared/bspgetworkarea.c \
39    ../../sparc/shared/bsppretaskinghook.c ../../shared/bsppost.c \
40    ../../shared/bspstart.c ../../shared/bootcard.c \
41    ../../shared/sbrk.c startup/setvec.c startup/spurious.c \
42    startup/erc32mec.c startup/boardinit.S startup/bspidle.c
43# gnatsupp
44libbsp_a_SOURCES += gnatsupp/gnatsupp.c ../../sparc/shared/gnatcommon.c
45# console
46libbsp_a_SOURCES += console/erc32_console.c ../../shared/console.c
47# debugio
48libbsp_a_SOURCES += console/debugputs.c
49# clock
50libbsp_a_SOURCES += clock/ckinit.c ../../../shared/clockdrv_shell.h
51# timer
52libbsp_a_SOURCES += timer/timer.c
53
54if HAS_NETWORKING
55erc32sonic_CPPFLAGS = -D__INSIDE_RTEMS_BSD_TCPIP_STACK__
56noinst_PROGRAMS += erc32sonic.rel
57erc32sonic_rel_SOURCES = erc32sonic/erc32sonic.c
58erc32sonic_rel_CPPFLAGS = $(AM_CPPFLAGS) $(erc32sonic_CPPFLAGS)
59erc32sonic_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
60endif
61
62libbsp_a_LIBADD  = ../../../libcpu/@RTEMS_CPU@/cache.rel \
63    ../../../libcpu/@RTEMS_CPU@/reg_win.rel \
64    ../../../libcpu/@RTEMS_CPU@/syscall.rel
65if HAS_NETWORKING
66libbsp_a_LIBADD += erc32sonic.rel
67endif
68
69EXTRA_DIST = times
70
71include $(srcdir)/preinstall.am
72include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.