source: rtems/c/src/lib/libbsp/arm/vegaplus/irq/Makefile.am @ 92b8b98a

4.104.114.84.95
Last change on this file since 92b8b98a was d0d73ec, checked in by Ralf Corsepius <ralf.corsepius@…>, on 08/11/02 at 06:11:03

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

  • clock/Makefile.am: Use .$(OBJEXT) instead of .o.
    • console/Makefile.am: Use .$(OBJEXT) instead of .o.
    • irq/Makefile.am: Use .$(OBJEXT) instead of .o.
    • start/Makefile.am: Use .$(OBJEXT) instead of .o.
    • startup/Makefile.am: Use .$(OBJEXT) instead of .o.
    • timer/Makefile.am: Use .$(OBJEXT) instead of .o.
    • wrapup/Makefile.am: Use .$(OBJEXT) instead of .o.
  • Property mode set to 100644
File size: 999 bytes
Line 
1##
2## $Id$
3##
4
5
6VPATH = @srcdir@:@srcdir@/../../shared/irq
7
8PGM = $(ARCH)/irq.rel
9
10C_FILES = irq.c irq_init.c bsp_irq_init.c
11C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
12
13S_FILES = irq_asm.S bsp_irq_asm.S
14S_O_FILES = $(S_FILES:%.S=$(ARCH)/%.$(OBJEXT))
15
16include_HEADERS = irq.h
17
18OBJS = $(C_O_FILES) $(S_O_FILES)
19
20include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
21include $(top_srcdir)/../../../../../../automake/compile.am
22include $(top_srcdir)/../../../../../../automake/lib.am
23
24#
25# (OPTIONAL) Add local stuff here using +=
26#
27
28AM_CPPFLAGS += -I$(srcdir)
29
30$(PROJECT_INCLUDE):
31        $(mkinstalldirs) $@
32
33$(PROJECT_INCLUDE)/%.h: %.h
34        $(INSTALL_DATA) $< $@
35
36PREINSTALL_FILES = $(PROJECT_INCLUDE) $(include_HEADERS:%=$(PROJECT_INCLUDE)/%)
37
38$(PGM): $(OBJS)
39        $(make-rel)
40
41# the .rel file built here will be put into libbsp.a by ../wrapup/Makefile
42
43all-local: $(ARCH) $(OBJS) $(PGM)
44
45.PRECIOUS: $(PGM)
46
47EXTRA_DIST = bsp_irq_asm.S bsp_irq_init.c irq.c
48
49include $(top_srcdir)/../../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.