source: rtems/c/src/lib/libcpu/mips/r46xx/Makefile.am @ 63ae876

4.104.114.84.95
Last change on this file since 63ae876 was 63ae876, checked in by Ralf Corsepius <ralf.corsepius@…>, on 01/21/04 at 06:50:10

2004-01-21 Ralf Corsepius <corsepiu@…>

  • clock/Makefile.am, timer/Makefile.am: Remove.
  • r46xx/Makefile.am: Built timer.rel, clock.rel. Add PREINSTALL_DIRS.
  • Makefile.am: Remove timer, clock.
  • tx39/Makefile.am, mongoosev/Makefile.am, shared/Makefile.am: Add PREINSTALL_DIRS.
  • configure.ac: Reflect removing clock/Makefile.am, timer/Makefile.am. Add subdir-objects to AUTOMAKE_OPTIONS.
  • Property mode set to 100644
File size: 1.7 KB
Line 
1##
2## $Id$
3##
4
5ACLOCAL_AMFLAGS = -I ../../../../../../aclocal
6
7EXTRA_PROGRAMS =
8CLEANFILES =
9noinst_DATA =
10
11include $(top_srcdir)/../../../automake/compile.am
12include $(top_srcdir)/../../../automake/lib.am
13
14if r46xx
15EXTRA_PROGRAMS += vectorisrs.rel
16CLEANFILES += vectorisrs.rel
17vectorisrs_rel_SOURCES = vectorisrs/maxvectors.c vectorisrs/vectorisrs.c
18vectorisrs_rel_CPPFLAGS = $(AM_CPPFLAGS) $(CFLAGS_OPTIMIZE_V)
19vectorisrs_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
20
21EXTRA_PROGRAMS += vectorisrs_g.rel
22CLEANFILES += vectorisrs_g.rel
23vectorisrs_g_rel_SOURCES = $(vectorisrs_rel_SOURCES)
24vectorisrs_g_rel_CPPFLAGS = $(AM_CPPFLAGS) $(CFLAGS_DEBUG_V)
25vectorisrs_g_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
26
27noinst_DATA += vectorisrs$(LIB_VARIANT).rel
28endif
29
30if r46xx
31EXTRA_PROGRAMS += timer.rel
32CLEANFILES += timer.rel
33timer_rel_SOURCES = ../timer/timer.c ../timer/gettime.S
34timer_rel_CPPFLAGS = $(AM_CPPFLAGS) $(CFLAGS_OPTIMIZE_V)
35timer_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
36
37EXTRA_PROGRAMS += timer_g.rel
38CLEANFILES += timer_g.rel
39timer_g_rel_SOURCES = $(timer_rel_SOURCES)
40timer_g_rel_CPPFLAGS = $(AM_CPPFLAGS) $(CFLAGS_DEBUG_V)
41timer_g_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
42
43noinst_DATA += timer$(LIB_VARIANT).rel
44endif
45
46if r46xx
47EXTRA_PROGRAMS += clock.rel
48CLEANFILES += clock.rel
49clock_rel_SOURCES = ../clock/ckinit.c ../clock/clock.S ../clock/clock.h
50clock_rel_CPPFLAGS = $(AM_CPPFLAGS) $(CFLAGS_OPTIMIZE_V)
51clock_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
52
53EXTRA_PROGRAMS += clock_g.rel
54CLEANFILES += clock_g.rel
55clock_g_rel_SOURCES = $(clock_rel_SOURCES)
56clock_g_rel_CPPFLAGS = $(AM_CPPFLAGS) $(CFLAGS_DEBUG_V)
57clock_g_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
58
59noinst_DATA += clock$(LIB_VARIANT).rel
60endif
61
62include $(top_srcdir)/../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.