source: rtems/c/src/lib/libbsp/powerpc/mbx8xx/irq/Makefile.am @ 724cc1e

4.104.114.84.95
Last change on this file since 724cc1e was 724cc1e, checked in by Ralf Corsepius <ralf.corsepius@…>, on 08/16/03 at 12:53:39

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.
ide/Makefile.am: Reflect having moved automake.
include/Makefile.am: Reflect having moved automake.
irq/Makefile.am: Reflect having moved automake.
network/Makefile.am: Reflect having moved automake.
startup/Makefile.am: Reflect having moved automake.
vectors/Makefile.am: Reflect having moved automake.
wrapup/Makefile.am: Reflect having moved automake.

  • Property mode set to 100644
File size: 864 bytes
Line 
1##
2## $Id$
3##
4
5
6C_FILES = irq.c irq_init.c
7OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
8
9include_bspdir = $(includedir)/bsp
10include_bsp_HEADERS = irq.h
11
12S_FILES = irq_asm.S
13OBJS += $(S_FILES:%.S=$(ARCH)/%.$(OBJEXT))
14
15include $(top_srcdir)/../../../../automake/compile.am
16include $(top_srcdir)/../../../../automake/lib.am
17
18$(PROJECT_INCLUDE):
19        $(mkinstalldirs) $@
20
21$(PROJECT_INCLUDE)/bsp:
22        $(mkinstalldirs) $@
23
24$(PROJECT_INCLUDE)/bsp/%.h: %.h
25        $(INSTALL_DATA) $< $@
26
27PREINSTALL_FILES = $(PROJECT_INCLUDE)/bsp \
28    $(include_bsp_HEADERS:%=$(PROJECT_INCLUDE)/bsp/%)
29
30#
31# (OPTIONAL) Add local stuff here using +=
32#
33
34$(PGM): $(OBJS)
35        $(make-rel)
36
37# the .rel file built here will be put into libbsp.a by ../wrapup/Makefile
38
39all-local: $(PREINSTALL_FILES) $(ARCH) $(OBJS) $(PGM)
40
41EXTRA_DIST = irq.c irq_asm.S irq_init.c
42
43include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.