source: rtems/c/src/lib/libcpu/mips/shared/interrupts/Makefile.am @ 1f751a7

4.104.114.84.95
Last change on this file since 1f751a7 was 1f751a7, checked in by Ralf Corsepius <ralf.corsepius@…>, on 08/11/02 at 05:33:47

2002-08-11 Ralf Corsepius <corsepiu@…>

  • clock/Makefile.am: Use .$(OBJEXT) instead of .o.
    • mongoosev/duart/Makefile.am: Use .$(OBJEXT) instead of .o.
    • mongoosev/vectorisrs/Makefile.am: Use .$(OBJEXT) instead of .o.
    • r46xx/vectorisrs/Makefile.am: Use .$(OBJEXT) instead of .o.
    • shared/cache/Makefile.am: Use .$(OBJEXT) instead of .o.
    • shared/interrupts/Makefile.am: Use .$(OBJEXT) instead of .o.
    • timer/Makefile.am: Use .$(OBJEXT) instead of .o.
    • tx39/vectorisrs/Makefile.am: Use .$(OBJEXT) instead of .o.
  • Property mode set to 100644
File size: 741 bytes
Line 
1##
2## $Id$
3##
4
5
6PGM = $(ARCH)/interrupts.rel
7
8C_FILES = installisrentries.c vectorexceptions.c
9
10S_FILES = isr_entries.S
11
12interrupts_rel_OBJECTS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT)) $(S_FILES:%.S=$(ARCH)/%.$(OBJEXT))
13
14include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
15include $(top_srcdir)/../../../../../automake/compile.am
16include $(top_srcdir)/../../../../../automake/lib.am
17
18#
19# (OPTIONAL) Add local stuff here using +=
20#
21
22if tx39
23EXTRA_FLAGS = -DTX39
24endif
25
26if mongoosev
27EXTRA_FLAGS = -DMONGOOSEV
28endif
29
30AM_CPPFLAGS += $(EXTRA_FLAGS)
31
32$(PGM): $(interrupts_rel_OBJECTS)
33        $(make-rel)
34
35all-local: $(ARCH) $(interrupts_rel_OBJECTS) $(PGM)
36
37.PRECIOUS: $(PGM)
38
39EXTRA_DIST = maxvectors.c
40
41include $(top_srcdir)/../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.