source: rtems/c/src/lib/libbsp/m68k/gen68302/Makefile.am @ e94666d

4.104.115
Last change on this file since e94666d was e94666d, checked in by Ralf Corsepius <ralf.corsepius@…>, on 09/29/08 at 03:43:47

2008-09-29 Ralf Corsépius <ralf.corsepius@…>

  • Makefile.am: Move noinst_LIBRARIES = libbsp.a before its components.
  • 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
8include $(top_srcdir)/../../bsp.am
9
10include_bspdir = $(includedir)/bsp
11
12dist_project_lib_DATA = bsp_specs
13
14include_HEADERS = include/bsp.h
15include_HEADERS += include/tm27.h
16
17nodist_include_HEADERS = include/bspopts.h
18nodist_include_bsp_HEADERS = ../../shared/include/bootcard.h
19DISTCLEANFILES = include/bspopts.h
20noinst_PROGRAMS =
21
22include_HEADERS += include/coverhd.h
23include_HEADERS += include/m302_int.h
24
25EXTRA_DIST = times
26
27EXTRA_DIST += start/start.S
28start.$(OBJEXT): start/start.S
29        $(CPPASCOMPILE) -o $@ -c $<
30project_lib_DATA = start.$(OBJEXT)
31
32dist_project_lib_DATA += startup/linkcmds
33
34noinst_LIBRARIES = libbsp.a
35
36startup_SOURCES = ../../shared/bspclean.c ../../shared/bsplibc.c \
37    ../../shared/bsppredriverhook.c ../../shared/bsppretaskinghook.c \
38    ../../shared/bsppost.c ../../shared/bspstart.c ../../shared/bootcard.c \
39    ../../shared/bspgetworkarea.c ../../shared/sbrk.c \
40    ../../m68k/shared/setvec.c ../../shared/gnatinstallhandler.c
41clock_SOURCES = clock/ckinit.c
42console_SOURCES = console/console.c ../../shared/dummy_printk_support.c
43timer_SOURCES = timer/timer.c timer/timerisr.S
44
45if HAS_NETWORKING
46network_CPPFLAGS = -D__INSIDE_RTEMS_BSD_TCPIP_STACK__
47noinst_PROGRAMS += network.rel
48network_rel_SOURCES = network/network.c
49network_rel_CPPFLAGS = $(AM_CPPFLAGS) $(network_CPPFLAGS)
50network_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
51endif
52
53libbsp_a_SOURCES = $(startup_SOURCES) $(clock_SOURCES) $(console_SOURCES) \
54    $(timer_SOURCES)
55
56libbsp_a_LIBADD = \
57    ../../../libcpu/@RTEMS_CPU@/shared/cache.rel \
58    ../../../libcpu/@RTEMS_CPU@/shared/misc.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.