source: rtems/c/src/lib/libbsp/arm/arm_bare_bsp/irq/Makefile.am @ 0f4b28e3

4.104.114.84.95
Last change on this file since 0f4b28e3 was f7bd2e6, checked in by Ralf Corsepius <ralf.corsepius@…>, on 08/16/03 at 12:34:00

2003-08-16 Ralf Corsepius <corsepiu@…>

Makefile.am: Reflect having moved automake.
clock/Makefile.am: Reflect having moved automake.
console/Makefile.am: Reflect having moved automake.
include/Makefile.am: Reflect having moved automake.
irq/Makefile.am: Reflect having moved automake.
start/Makefile.am: Reflect having moved automake.
startup/Makefile.am: Reflect having moved automake.
timer/Makefile.am: Reflect having moved automake.
wrapup/Makefile.am: Reflect having moved automake.

  • Property mode set to 100644
File size: 873 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
11S_FILES = irq_asm.S bsp_irq_asm.S
12include_HEADERS = irq.h
13
14C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
15S_O_FILES = $(S_FILES:%.S=$(ARCH)/%.$(OBJEXT))
16
17irq_rel_OBJECTS = $(C_O_FILES) $(S_O_FILES)
18
19$(PROJECT_INCLUDE):
20        $(mkinstalldirs) $@
21
22$(PROJECT_INCLUDE)/%.h: %.h
23        $(INSTALL_DATA) $< $@
24
25PREINSTALL_FILES = $(PROJECT_INCLUDE) $(include_HEADERS:%=$(PROJECT_INCLUDE)/%)
26
27include $(top_srcdir)/../../../../automake/compile.am
28include $(top_srcdir)/../../../../automake/lib.am
29
30#
31# (OPTIONAL) Add local stuff here using +=
32#
33
34$(PGM): $(irq_rel_OBJECTS)
35        $(make-rel)
36
37all: $(PREINSTALL_FILES) $(ARCH) $(irq_rel_OBJECTS) $(PGM)
38
39.PRECIOUS: $(PGM)
40
41EXTRA_DIST = irq.c bsp_irq_init.c bsp_irq_asm.S
42
43include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.