source: rtems/c/src/lib/libbsp/powerpc/motorola_powerpc/irq/Makefile.am @ 23090f33

4.104.114.84.95
Last change on this file since 23090f33 was 23090f33, checked in by Ralf Corsepius <ralf.corsepius@…>, on 09/29/03 at 13:22:48

2003-09-29 Ralf Corsepius <corsepiu@…>

  • Makefile.am: Merge-in include/Makefile.am. Reflect changes to bsp.am.
  • include/Makefile.am: Remove.
  • include/bsp.h: Add copy of ../shared/include/bsp.h (Violates BSP coding standards).
  • configure.ac: Reflect changes above.
  • irq/Makefile.am: Fix header installation.
  • motorola/Makefile.am: Fix header installation.
  • openpic/Makefile.am: Fix header installation.
  • pci/Makefile.am: Fix header installation.
  • Property mode set to 100644
File size: 863 bytes
Line 
1##
2## $Id$
3##
4
5VPATH = @srcdir@:@srcdir@/../../shared/irq
6
7C_FILES = irq_init.c i8259.c irq.c
8C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
9
10include_bspdir = $(includedir)/bsp
11nodist_include_bsp_HEADERS = $(top_srcdir)/../shared/irq/irq.h
12
13S_FILES = irq_asm.S
14S_O_FILES = $(S_FILES:%.S=$(ARCH)/%.$(OBJEXT))
15
16OBJS = $(S_O_FILES) $(C_O_FILES)
17
18include $(top_srcdir)/../../../../automake/compile.am
19include $(top_srcdir)/../../../../automake/lib.am
20
21#
22# (OPTIONAL) Add local stuff here using +=
23#
24
25all-local: $(ARCH) $(PREINSTALL_FILES) $(OBJS)
26
27PREINSTALL_FILES =
28
29$(PROJECT_INCLUDE)/bsp:
30        @$(mkinstalldirs) $(PROJECT_INCLUDE)/bsp
31PREINSTALL_FILES += $(PROJECT_INCLUDE)/bsp
32
33$(PROJECT_INCLUDE)/bsp/irq.h: $(top_srcdir)/../shared/irq/irq.h
34        $(INSTALL_DATA) $< $@
35PREINSTALL_FILES += $(PROJECT_INCLUDE)/bsp/irq.h
36
37include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.