source: rtems/c/src/lib/libbsp/m68k/ods68302/Makefile.am @ 218c346

Last change on this file since 218c346 was 218c346, checked in by Ralf Corsepius <ralf.corsepius@…>, on 10/20/06 at 11:55:29

2006-10-20 Ralf Corsépius <ralf.corsepius@…>

  • Makefile.am: Remove superfluous -DASM.
  • Property mode set to 100644
File size: 2.2 KB
RevLine 
[df49c60]1##
[7068e246]2## $Id$
[df49c60]3##
[7068e246]4
[fe8bc62f]5ACLOCAL_AMFLAGS = -I ../../../../aclocal
[7068e246]6
[c95ab0d7]7include $(top_srcdir)/../../../../automake/compile.am
[7068e246]8include $(top_srcdir)/../../bsp.am
9
[2a7f9a28]10dist_project_lib_DATA = bsp_specs
11
12include_HEADERS = include/bsp.h
[3defec6]13include_HEADERS += include/tm27.h
[4cbf22a]14
[2a7f9a28]15nodist_include_HEADERS = include/bspopts.h
[4cbf22a]16DISTCLEANFILES = include/bspopts.h
17noinst_PROGRAMS =
[2a7f9a28]18
[c95ab0d7]19EXTRA_DIST =
20
[2821666f]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
[c95ab0d7]27# FIXME: Better merge both files into one and use #ifdef GDB_MONITOR_ACTIVE
28if ODS68302_DEBUG
29EXTRA_DIST += start/debugreset.S
[4cbf22a]30start.$(OBJEXT): start/debugreset.S
[218c346]31        $(CPPASCOMPILE) -o $@ -c $<
[c95ab0d7]32else
33EXTRA_DIST += start/reset.S
[4cbf22a]34start.$(OBJEXT): start/reset.S
[218c346]35        $(CPPASCOMPILE) -o $@ -c $<
[c95ab0d7]36endif
37
[4cbf22a]38project_lib_DATA = start.$(OBJEXT)
[c95ab0d7]39
40dist_project_lib_DATA += startup/linkcmds startup/rom startup/debugger
41
[4cbf22a]42noinst_PROGRAMS += startup.rel
[c95ab0d7]43startup_rel_SOURCES = startup/cpuboot.c startup/crc.c startup/debugport.c \
44    startup/gdb-hooks.c ../../shared/bootcard.c ../../shared/main.c \
[4cb9d26]45    startup/m68302scc.c startup/m68k-stub.c \
46    ../../m68k/shared/m68kpretaskinghook.c startup/memcheck.c \
47    startup/trace.c ../../shared/gnatinstallhandler.c ../../shared/bsplibc.c \
48    ../../shared/bsppost.c startup/bspstart.c startup/bspclean.c \
49    ../../shared/sbrk.c ../../m68k/shared/setvec.c
[844609f9]50startup_rel_CPPFLAGS = $(AM_CPPFLAGS)
[c95ab0d7]51startup_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
52
[4cbf22a]53noinst_PROGRAMS += clock.rel
[c95ab0d7]54clock_rel_SOURCES = clock/ckinit.c
[844609f9]55clock_rel_CPPFLAGS = $(AM_CPPFLAGS)
[c95ab0d7]56clock_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
57
[4cbf22a]58noinst_PROGRAMS += console.rel
[c95ab0d7]59console_rel_SOURCES = console/console.c
[844609f9]60console_rel_CPPFLAGS = $(AM_CPPFLAGS)
[c95ab0d7]61console_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
62
[4cbf22a]63noinst_PROGRAMS += timer.rel
[c95ab0d7]64timer_rel_SOURCES = timer/timer.c timer/timerisr.S
[844609f9]65timer_rel_CPPFLAGS = $(AM_CPPFLAGS)
[c95ab0d7]66timer_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
67
[4cbf22a]68noinst_LIBRARIES = libbsp.a
[c95ab0d7]69libbsp_a_SOURCES =
[4cbf22a]70libbsp_a_LIBADD = startup.rel clock.rel console.rel timer.rel
71libbsp_a_LIBADD += ../../../libcpu/@RTEMS_CPU@/shared/cache.rel \
72    ../../../libcpu/@RTEMS_CPU@/shared/misc.rel
[c95ab0d7]73
[5a9284a]74include $(srcdir)/preinstall.am
[a4aeb92]75include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.