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

4.104.114.84.95
Last change on this file since ee5769ad was 8f783b61, checked in by Ralf Corsepius <ralf.corsepius@…>, on 02/06/04 at 11:31:26

2004-02-06 Ralf Corsepius <corsepiu@…>

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