source: rtems/c/src/lib/libbsp/powerpc/motorola_powerpc/vme/Makefile.am @ 7b7b2e82

4.104.114.84.95
Last change on this file since 7b7b2e82 was 6badcc2, checked in by Ralf Corsepius <ralf.corsepius@…>, on 08/16/03 at 12:53:46

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

Makefile.am: Reflect having moved automake.
bootloader/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.
motorola/Makefile.am: Reflect having moved automake.
openpic/Makefile.am: Reflect having moved automake.
pci/Makefile.am: Reflect having moved automake.
residual/Makefile.am: Reflect having moved automake.
start/Makefile.am: Reflect having moved automake.
startup/Makefile.am: Reflect having moved automake.
vectors/Makefile.am: Reflect having moved automake.
vme/Makefile.am: Reflect having moved automake.
wrapup/Makefile.am: Reflect having moved automake.

  • Property mode set to 100644
File size: 1.1 KB
Line 
1##
2## $Id$
3##
4
5VPATH = @srcdir@:@srcdir@/../../shared/vme:@srcdir@/../../../shared/vmeUniverse:
6
7H_FILES = ../pci/pci.h ../irq/irq.h ../vme/VME.h ../vme/VMEConfig.h
8
9C_FILES = vmeUniverse.c vmeconfig.c
10
11
12C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
13
14OBJS = $(C_O_FILES)
15
16include_bspdir = $(includedir)/bsp
17include_bsp_HEADERS = ../../shared/vme/VMEConfig.h
18include_bsp_HEADERS += ../../shared/vme/VME.h
19include_bsp_HEADERS += ../../../shared/vmeUniverse/vmeUniverse.h
20
21$(PROJECT_INCLUDE):
22        $(mkinstalldirs) $@
23
24$(PROJECT_INCLUDE)/bsp:
25        $(mkinstalldirs) $@
26
27$(PROJECT_INCLUDE)/bsp/vmeUniverse.h: vmeUniverse.h
28        $(INSTALL_DATA) $< $@
29
30$(PROJECT_INCLUDE)/bsp/VME.h: VME.h
31        $(INSTALL_DATA) $< $@
32
33$(PROJECT_INCLUDE)/bsp/VMEConfig.h: VMEConfig.h
34        $(INSTALL_DATA) $< $@
35
36PREINSTALL_FILES = $(PROJECT_INCLUDE)/bsp \
37    $(addprefix $(PROJECT_INCLUDE)/bsp/,$(notdir $(include_bsp_HEADERS)))
38
39all-local: $(PREINSTALL_FILES) $(ARCH) $(OBJS)
40
41include $(top_srcdir)/../../../../automake/compile.am
42include $(top_srcdir)/../../../../automake/lib.am
43
44#
45# (OPTIONAL) Add local stuff here using +=
46#
47
48include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.