source: rtems/c/src/lib/libbsp/m68k/ods68302/Makefile.am @ 05adba6

4.104.115
Last change on this file since 05adba6 was 05adba6, checked in by Joel Sherrill <joel.sherrill@…>, on 09/10/08 at 21:35:06

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

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