source: rtems/c/src/lib/libcpu/mips/shared/interrupts/Makefile.am @ 2e7ed911

4.104.114.84.95
Last change on this file since 2e7ed911 was 2e7ed911, checked in by Joel Sherrill <joel.sherrill@…>, on 05/22/01 at 23:20:14

2001-05-22 Greg Menke <gregory.menke@…>

  • Assisted in design and debug by Joel Sherrill <joel@…>.
  • mongoosev/duart/mg5uart.c, mongoosev/duart/mg5uart.h, mongoosev/include/mongoose-v.h, mongoosev/vectorisrs/vectorisrs.c, shared/interrupts/maxvectors.c: Now works. Significant rework of exceptions and interrupt vectoring to clean things up.
  • shared/interrupts/vectorexceptions.c: Removed.
  • shared/interrupts/Makefile.am: Reflects above.
  • Property mode set to 100644
File size: 750 bytes
Line 
1##
2## $Id$
3##
4
5AUTOMAKE_OPTIONS = foreign 1.4
6
7PGM = $(ARCH)/interrupts.rel
8
9C_FILES = installisrentries.c maxvectors.c
10
11S_FILES = isr_entries.S
12
13interrupts_rel_OBJECTS = $(C_FILES:%.c=$(ARCH)/%.o) $(S_FILES:%.S=$(ARCH)/%.o)
14
15include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
16include $(top_srcdir)/../../../../../automake/compile.am
17include $(top_srcdir)/../../../../../automake/lib.am
18
19#
20# (OPTIONAL) Add local stuff here using +=
21#
22
23if tx39
24EXTRA_FLAGS = -DTX39
25endif
26
27if mongoosev
28EXTRA_FLAGS = -DMONGOOSEV
29endif
30
31AM_CPPFLAGS += $(EXTRA_FLAGS)
32
33$(PGM): $(interrupts_rel_OBJECTS)
34        $(make-rel)
35
36all-local: $(ARCH) $(interrupts_rel_OBJECTS) $(PGM)
37
38.PRECIOUS: $(PGM)
39
40EXTRA_DIST = maxvectors.c
41
42include $(top_srcdir)/../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.