source: rtems/c/src/lib/libcpu/mips/tx39/vectorisrs/Makefile.am @ 5c27c80

4.104.114.84.95
Last change on this file since 5c27c80 was 40323b5, checked in by Joel Sherrill <joel.sherrill@…>, on 12/13/00 at 22:33:49

2000-12-13 Joel Sherrill <joel@…>

  • configure.in: Added new directories.
  • shared/interrupts/Makefile.am: Added AM_CPPFLAGS to define TX39 when compiling for a TX3904.
  • shared/interrupts/maxvectors.c: Corrected conditional logic.
  • tx39/Makefile.am: Added vectorisrs.
  • tx39/vectorisrs/Makefile.am, tx39/vectorisrs/vectorisrs.c,
  • tx39/vectorisrs/.cvsignore: New files. This decodes the interrupt pending information on the TX3904 and vectors an interrupt.
  • Property mode set to 100644
File size: 592 bytes
Line 
1##
2## $Id$
3##
4
5AUTOMAKE_OPTIONS = foreign 1.4
6
7PGM = $(ARCH)/vectorisrs.rel
8
9C_FILES = 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.