source: rtems/c/src/lib/libbsp/m68k/mvme167/Makefile.am @ e9db9661

4.9.1
Last change on this file since e9db9661 was 1d0ee80e, checked in by Joel Sherrill <joel.sherrill@…>, on 05/14/08 at 20:28:09

2008-05-14 Joel Sherrill <joel.sherrill@…>

  • Makefile.am: Rework to avoid .rel files.
  • Property mode set to 100644
File size: 1.9 KB
Line 
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
20include_HEADERS += include/page_table.h
21include_HEADERS += include/fatal.h
22
23nodist_include_HEADERS += $(top_srcdir)/../shared/mvme/mvme16x_hw.h
24
25EXTRA_DIST = ../../m68k/shared/start.S
26start.$(OBJEXT): ../../m68k/shared/start.S
27        $(CPPASCOMPILE) -o $@ -c $<
28
29project_lib_DATA = start.$(OBJEXT)
30
31dist_project_lib_DATA += startup/linkcmds
32
33startup_SOURCES = startup/bspclean.c ../../shared/bsplibc.c \
34    ../../shared/bsppredriverhook.c \
35    ../../shared/bsppost.c startup/bspstart.c ../../shared/bootcard.c \
36    ../../m68k/shared/m68kpretaskinghook.c \
37    startup/page_table.c ../../shared/sbrk.c ../../m68k/shared/setvec.c \
38    ../../shared/gnatinstallhandler.c
39clock_SOURCES = clock/ckinit.c
40console_SOURCES = console/console.c console/console-recording.h
41fatal_SOURCES = fatal/bspfatal.c
42timer_SOURCES = timer/timer.c timer/timerisr.S
43
44if HAS_NETWORKING
45network_CPPFLAGS = -D__INSIDE_RTEMS_BSD_TCPIP_STACK__
46noinst_PROGRAMS += network.rel
47network_rel_SOURCES = network/network.c
48network_rel_CPPFLAGS = $(AM_CPPFLAGS) $(network_CPPFLAGS)
49network_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
50endif
51
52noinst_LIBRARIES = libbsp.a
53libbsp_a_SOURCES = $(startup_SOURCES) $(clock_SOURCES) $(console_SOURCES) \
54    $(fatal_SOURCES) $(timer_SOURCES)
55
56libbsp_a_LIBADD = \
57    ../../../libcpu/@RTEMS_CPU@/shared/cache.rel \
58    ../../../libcpu/@RTEMS_CPU@/shared/misc.rel \
59    ../../../libcpu/@RTEMS_CPU@/@RTEMS_CPU_MODEL@/fpsp.rel
60if HAS_NETWORKING
61libbsp_a_LIBADD += network.rel
62endif
63
64EXTRA_DIST += times
65
66include $(srcdir)/preinstall.am
67include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.