source: rtems/c/src/lib/libcpu/mips/r46xx/vectorisrs/Makefile.am @ 7c05d28

4.104.114.84.95
Last change on this file since 7c05d28 was 7c05d28, checked in by Joel Sherrill <joel.sherrill@…>, on 05/24/01 at 19:54:22

2000-05-24 Joel Sherrill <joel@…>

  • mongoosev/include/mongoose-v.h, mongoosev/vectorisrs/vectorisrs.c, r46xx/vectorisrs/vectorisrs.c, tx39/vectorisrs/vectorisrs.c, tx39/include/tx3904.h: All exceptions were given low numbers and thus can be now be installed and processed in a uniform manner just like interrupts. Variances between various MIPS ISA levels are not accounted for at this time.
  • mongoosev/vectorisrs/Makefile.am, mongoosev/vectorisrs/maxvectors.c, r46xx/vectorisrs/Makefile.am, r46xx/vectorisrs/maxvectors.c, tx39/vectorisrs/Makefile.am, tx39/vectorisrs/maxvectors.c, shared/interrupts/maxvectors.c, shared/interrupts/Makefile.am: Split the shared maxvectors.c into a variety of CPU model specific versions to simplify the build process and reduce depdencies. Deleted shared/interrupts/maxvectors.c and created various CPU model versions.
  • Property mode set to 100644
File size: 605 bytes
Line 
1##
2## $Id$
3##
4
5AUTOMAKE_OPTIONS = foreign 1.4
6
7PGM = $(ARCH)/vectorisrs.rel
8
9C_FILES = maxvectors.c vectorisrs.c
10
11vectorisrs_rel_OBJECTS = $(C_FILES:%.c=$(ARCH)/%.o) $(S_FILES:%.S=$(ARCH)/%.o)
12
13include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
14include $(top_srcdir)/../../../../../automake/compile.am
15include $(top_srcdir)/../../../../../automake/lib.am
16
17#
18# (OPTIONAL) Add local stuff here using +=
19#
20
21$(PGM): $(vectorisrs_rel_OBJECTS)
22        $(make-rel)
23
24all-local: $(ARCH) $(vectorisrs_rel_OBJECTS) $(PGM)
25
26.PRECIOUS: $(PGM)
27
28EXTRA_DIST = vectorisrs.c
29
30include $(top_srcdir)/../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.