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

4.104.114.84.95
Last change on this file since 7eeb740a was f42a7891, checked in by Ralf Corsepius <ralf.corsepius@…>, on 12/03/03 at 14:37:49

2003-12-03 Ralf Corsepius <corsepiu@…>

  • Makefile.am: Add preinstallation dirstamp support.
  • bootloader/Makefile.am: Cosmetics.
  • clock/Makefile.am: Cosmetics.
  • console/Makefile.am: Cosmetics.
  • irq/Makefile.am: Add preinstallation dirstamp support.
  • motorola/Makefile.am: Cosmetics.
  • openpic/Makefile.am: Cosmetics.
  • pci/Makefile.am: Cosmetics.
  • residual/Makefile.am: Cosmetics.
  • start/Makefile.am: Cosmetics.
  • startup/Makefile.am: Cosmetics.
  • vectors/Makefile.am: Add preinstallation dirstamp support.
  • vme/Makefile.am: Add preinstallation dirstamp support.
  • wrapup/Makefile.am: Cosmetics.
  • Property mode set to 100644
File size: 1.5 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
11C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
12
13OBJS = $(C_O_FILES)
14
15include_bspdir = $(includedir)/bsp
16include_bsp_HEADERS = ../../shared/vme/VMEConfig.h
17include_bsp_HEADERS += ../../shared/vme/VME.h
18include_bsp_HEADERS += ../../../shared/vmeUniverse/vmeUniverse.h
19
20all-local: $(PREINSTALL_FILES) $(OBJS)
21
22include $(top_srcdir)/../../../../automake/compile.am
23include $(top_srcdir)/../../../../automake/lib.am
24
25#
26# (OPTIONAL) Add local stuff here using +=
27#
28
29PREINSTALL_FILES =
30
31$(PROJECT_INCLUDE)/bsp/$(dirstamp):
32        @$(mkinstalldirs) $(PROJECT_INCLUDE)/bsp
33        @: > $(PROJECT_INCLUDE)/bsp/$(dirstamp)
34PREINSTALL_FILES += $(PROJECT_INCLUDE)/bsp/$(dirstamp)
35
36$(PROJECT_INCLUDE)/bsp/VMEConfig.h: ../../shared/vme/VMEConfig.h $(PROJECT_INCLUDE)/bsp/$(dirstamp)
37        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/bsp/VMEConfig.h
38PREINSTALL_FILES += $(PROJECT_INCLUDE)/bsp/VMEConfig.h
39
40$(PROJECT_INCLUDE)/bsp/VME.h: ../../shared/vme/VME.h $(PROJECT_INCLUDE)/bsp/$(dirstamp)
41        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/bsp/VME.h
42PREINSTALL_FILES += $(PROJECT_INCLUDE)/bsp/VME.h
43
44$(PROJECT_INCLUDE)/bsp/vmeUniverse.h: ../../../shared/vmeUniverse/vmeUniverse.h $(PROJECT_INCLUDE)/bsp/$(dirstamp)
45        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/bsp/vmeUniverse.h
46PREINSTALL_FILES += $(PROJECT_INCLUDE)/bsp/vmeUniverse.h
47
48include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.