source: rtems/c/src/lib/libbsp/arm/armulator/Makefile.am @ dec6a8da

4.104.114.84.95
Last change on this file since dec6a8da was dec6a8da, checked in by Ralf Corsepius <ralf.corsepius@…>, on 01/11/06 at 05:19:16

2006-01-11 Ralf Corsepius <ralf.corsepius@…>

  • Makefile.am: Add preinstall.am.
  • Property mode set to 100644
File size: 1.6 KB
Line 
1##
2## $Id$
3##
4
5ACLOCAL_AMFLAGS = -I ../../../../aclocal
6
7noinst_PROGRAMS =
8
9include $(top_srcdir)/../../../../automake/compile.am
10include $(top_srcdir)/../../bsp.am
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
18DISTCLEANFILES = include/bspopts.h
19CLEANFILES =
20nodist_include_HEADERS += ../../shared/include/coverhd.h
21
22EXTRA_DIST = start/start.S
23start.$(OBJEXT): start/start.S
24        $(CPPASCOMPILE) -DASM -o $@ -c $<
25project_lib_DATA = start.$(OBJEXT)
26
27dist_project_lib_DATA += startup/linkcmds
28
29noinst_PROGRAMS += startup.rel
30startup_rel_SOURCES = startup/trap.S ../../shared/bsplibc.c \
31    ../../shared/bsppost.c startup/bspstart.c ../../shared/bootcard.c \
32    ../../shared/main.c ../../shared/sbrk.c \
33    ../../shared/gnatinstallhandler.c startup/libcfunc.c startup/syscalls.c
34startup_rel_CPPFLAGS = $(AM_CPPFLAGS)
35startup_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
36
37noinst_PROGRAMS += clock.rel
38clock_rel_SOURCES = clock/clockdrv.c
39clock_rel_CPPFLAGS = $(AM_CPPFLAGS)
40clock_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
41
42noinst_PROGRAMS += console.rel
43console_rel_SOURCES = console/console-io.c ../../shared/console-polled.c
44console_rel_CPPFLAGS = $(AM_CPPFLAGS)
45console_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
46
47noinst_PROGRAMS += timer.rel
48timer_rel_SOURCES = ../../shared/timerstub.c
49timer_rel_CPPFLAGS = $(AM_CPPFLAGS)
50timer_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
51
52noinst_LIBRARIES = libbsp.a
53libbsp_a_SOURCES =
54libbsp_a_LIBADD = startup.rel clock.rel console.rel timer.rel
55
56all-local: $(PREINSTALL_FILES) $(TMPINSTALL_FILES)
57
58include $(srcdir)/preinstall.am
59
60include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.