source: rtems/c/src/lib/libbsp/m68k/uC5282/Makefile.am @ 18aa55ee

4.104.115
Last change on this file since 18aa55ee was 18aa55ee, checked in by Joel Sherrill <joel.sherrill@…>, on 09/16/08 at 19:03:48

2008-09-16 Joel Sherrill <joel.sherrill@…>

  • Makefile.am, configure.ac, startup/bspstart.c, startup/linkcmds: Add use of bsp_get_work_area() in its own file and rely on BSP Framework to perform more initialization. Remove unnecessary includes of rtems/libio.h and rtems/libcsupport.h.
  • Property mode set to 100644
File size: 1.6 KB
RevLine 
[572484f]1##
2## $Id$
3##
4
5ACLOCAL_AMFLAGS = -I ../../../../aclocal
6
7include $(top_srcdir)/../../../../automake/compile.am
8include $(top_srcdir)/../../bsp.am
9
10dist_project_lib_DATA = bsp_specs
11
12include_HEADERS = include/bsp.h
13include_HEADERS += include/tm27.h
14
15nodist_include_HEADERS = include/bspopts.h
16DISTCLEANFILES = include/bspopts.h
17noinst_PROGRAMS =
18
19include_HEADERS += include/coverhd.h
20
21EXTRA_DIST = start/start.S
22start.$(OBJEXT): start/start.S
[57357d9]23        $(CPPASCOMPILE) -o $@ -c $<
[572484f]24project_lib_DATA = start.$(OBJEXT)
25
26dist_project_lib_DATA += startup/linkcmds
27
[1d0ee80e]28startup_SOURCES = startup/bspclean.c ../../shared/bsplibc.c \
[2804a3e7]29    ../../shared/bsppost.c ../../shared/bsppredriverhook.c \
[18aa55ee]30    ../../shared/bsppretaskinghook.c ../../m68k/shared/m68kbspgetworkarea.c \
31    startup/init5282.c startup/bspstart.c ../../shared/bootcard.c \
32    ../../shared/sbrk.c ../../m68k/shared/setvec.c \
33    ../../shared/gnatinstallhandler.c
[1d0ee80e]34clock_SOURCES = clock/clock.c
35console_SOURCES = console/console.c
36timer_SOURCES = timer/timer.c
[572484f]37
38if HAS_NETWORKING
39network_CPPFLAGS = -D__INSIDE_RTEMS_BSD_TCPIP_STACK__
40noinst_PROGRAMS += network.rel
41network_rel_SOURCES = network/network.c
[d88c378]42network_rel_CPPFLAGS = $(AM_CPPFLAGS) $(network_CPPFLAGS)
[572484f]43network_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
44endif
45
46noinst_LIBRARIES = libbsp.a
[1d0ee80e]47libbsp_a_SOURCES = $(startup_SOURCES) $(clock_SOURCES) $(console_SOURCES) \
48    $(timer_SOURCES)
49
50libbsp_a_LIBADD = ../../../libcpu/@RTEMS_CPU@/shared/cache.rel \
51    ../../../libcpu/@RTEMS_CPU@/shared/misc.rel
[572484f]52if HAS_NETWORKING
53libbsp_a_LIBADD += network.rel
54endif
55
[5a9284a]56include $(srcdir)/preinstall.am
[572484f]57include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.