source: rtems/c/src/lib/libbsp/powerpc/motorola_powerpc/include/Makefile.am @ dc17e8ed

4.104.114.84.95
Last change on this file since dc17e8ed was 115a390, checked in by Ralf Corsepius <ralf.corsepius@…>, on 07/24/02 at 10:13:10

2002-07-24 Ralf Corsepius <corsepiu@…>

  • include/Makefile.am: Fix preinstallation.
  • bootloader: Eliminate $(INCLUDES).
  • Property mode set to 100644
File size: 1.7 KB
Line 
1##
2## $Id$
3##
4
5include_HEADERS = bspopts.h
6
7include_HEADERS += ../../shared/include/nvram.h ../../shared/include/bsp.h \
8    ../../../shared/include/coverhd.h
9
10include_bspdir = $(includedir)/bsp
11include_bsp_HEADERS = ../../shared/console/consoleIo.h ../../shared/console/uart.h \
12    ../../shared/irq/irq.h ../../shared/motorola/motorola.h
13
14$(PROJECT_INCLUDE):
15        $(mkinstalldirs) $@
16
17$(PROJECT_INCLUDE)/bsp:
18        $(mkinstalldirs) $@
19
20$(PROJECT_INCLUDE)/%.h: %.h
21        $(INSTALL_DATA) $< $@
22
23$(PROJECT_INCLUDE)/nvram.h: ../../shared/include/nvram.h
24        $(INSTALL_DATA) $< $@
25
26$(PROJECT_INCLUDE)/bsp.h: ../../shared/include/bsp.h
27        $(INSTALL_DATA) $< $@
28
29$(PROJECT_INCLUDE)/coverhd.h: ../../../shared/include/coverhd.h
30        $(INSTALL_DATA) $< $@
31
32$(PROJECT_INCLUDE)/bsp/consoleIo.h: ../../shared/console/consoleIo.h
33        $(INSTALL_DATA) $< $@
34
35$(PROJECT_INCLUDE)/bsp/uart.h: ../../shared/console/uart.h
36        $(INSTALL_DATA) $< $@
37
38$(PROJECT_INCLUDE)/bsp/irq.h: ../../shared/irq/irq.h
39        $(INSTALL_DATA) $< $@
40
41$(PROJECT_INCLUDE)/bsp/motorola.h: ../../shared/motorola/motorola.h
42        $(INSTALL_DATA) $< $@
43
44TMPINSTALL_FILES = $(PROJECT_INCLUDE)
45TMPINSTALL_FILES += $(PROJECT_INCLUDE)/bspopts.h
46TMPINSTALL_FILES += $(PROJECT_INCLUDE)/bsp.h
47TMPINSTALL_FILES += $(PROJECT_INCLUDE)/nvram.h
48TMPINSTALL_FILES += $(PROJECT_INCLUDE)/coverhd.h
49
50TMPINSTALL_FILES += $(PROJECT_INCLUDE)/bsp
51TMPINSTALL_FILES += $(PROJECT_INCLUDE)/bsp/motorola.h
52TMPINSTALL_FILES += $(PROJECT_INCLUDE)/bsp/consoleIo.h
53TMPINSTALL_FILES += $(PROJECT_INCLUDE)/bsp/uart.h
54TMPINSTALL_FILES += $(PROJECT_INCLUDE)/bsp/irq.h
55
56all-local: $(TMPINSTALL_FILES)
57
58include $(top_srcdir)/../../../../../../automake/force-preinstall.am
59include $(top_srcdir)/../../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.