source: rtems/c/src/lib/libbsp/m68k/ods68302/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: 2.0 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
22EXTRA_DIST =
23
24include_HEADERS += include/bare.h
25include_HEADERS += include/crc.h
26include_HEADERS += include/debugport.h
27include_HEADERS += include/m68302scc.h
28include_HEADERS += include/coverhd.h
29
30# FIXME: Better merge both files into one and use #ifdef GDB_MONITOR_ACTIVE
31if ODS68302_DEBUG
32EXTRA_DIST += start/debugreset.S
33start.$(OBJEXT): start/debugreset.S
34        $(CPPASCOMPILE) -o $@ -c $<
35else
36EXTRA_DIST += start/reset.S
37start.$(OBJEXT): start/reset.S
38        $(CPPASCOMPILE) -o $@ -c $<
39endif
40
41project_lib_DATA = start.$(OBJEXT)
42
43dist_project_lib_DATA += startup/linkcmds startup/rom startup/debugger
44
45noinst_LIBRARIES = libbsp.a
46
47startup_SOURCES = startup/cpuboot.c startup/crc.c startup/debugport.c \
48    startup/gdb-hooks.c ../../shared/bootcard.c \
49    startup/m68302scc.c startup/m68k-stub.c \
50    ../../shared/bsppretaskinghook.c startup/memcheck.c \
51    ../../shared/bspgetworkarea.c startup/memcheck.c \
52    startup/trace.c ../../shared/gnatinstallhandler.c ../../shared/bsplibc.c \
53    ../../shared/bsppredriverhook.c ../../shared/bsppost.c \
54    ../../shared/bspstart.c ../../shared/bspclean.c ../../shared/sbrk.c \
55    ../../m68k/shared/setvec.c
56clock_SOURCES = clock/ckinit.c
57console_SOURCES = console/console.c ../../shared/dummy_printk_support.c
58timer_SOURCES = timer/timer.c timer/timerisr.S
59
60libbsp_a_SOURCES = $(startup_SOURCES) $(clock_SOURCES) $(console_SOURCES) \
61    $(timer_SOURCES)
62
63libbsp_a_LIBADD = \
64    ../../../libcpu/@RTEMS_CPU@/shared/cache.rel \
65    ../../../libcpu/@RTEMS_CPU@/shared/misc.rel
66
67include $(srcdir)/preinstall.am
68include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.