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

Last change on this file since ae460ec was ae460ec, checked in by Joel Sherrill <joel.sherrill@…>, on 11/10/04 at 22:13:57

2004-11-10 Richard Campbell <richard.campbell@…>

  • Makefile.am, configure.ac, bootloader/Makefile.am, include/Makefile.am, wrapup/Makefile.am: Add MVME2100 BSP.
  • README.MVME2100, tod/.cvsignore, tod/Makefile.am: New files.
  • Property mode set to 100644
File size: 1.8 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 ../../../shared/tod.h
9
10include_bspdir = $(includedir)/bsp
11include_bsp_HEADERS = ../../shared/console/consoleIo.h \
12    ../../shared/console/uart.h ../../shared/irq/irq.h \
13    ../../shared/motorola/motorola.h
14
15$(PROJECT_INCLUDE):
16        $(mkinstalldirs) $@
17
18$(PROJECT_INCLUDE)/bsp:
19        $(mkinstalldirs) $@
20
21$(PROJECT_INCLUDE)/%.h: %.h
22        $(INSTALL_DATA) $< $@
23
24$(PROJECT_INCLUDE)/nvram.h: ../../shared/include/nvram.h
25        $(INSTALL_DATA) $< $@
26
27$(PROJECT_INCLUDE)/bsp.h: ../../shared/include/bsp.h
28        $(INSTALL_DATA) $< $@
29
30$(PROJECT_INCLUDE)/coverhd.h: ../../../shared/include/coverhd.h
31        $(INSTALL_DATA) $< $@
32
33$(PROJECT_INCLUDE)/tod.h: ../../../shared/tod.h
34        $(INSTALL_DATA) $< $@
35
36$(PROJECT_INCLUDE)/bsp/consoleIo.h: ../../shared/console/consoleIo.h
37        $(INSTALL_DATA) $< $@
38
39$(PROJECT_INCLUDE)/bsp/uart.h: ../../shared/console/uart.h
40        $(INSTALL_DATA) $< $@
41
42$(PROJECT_INCLUDE)/bsp/irq.h: ../../shared/irq/irq.h
43        $(INSTALL_DATA) $< $@
44
45$(PROJECT_INCLUDE)/bsp/motorola.h: ../../shared/motorola/motorola.h
46        $(INSTALL_DATA) $< $@
47
48TMPINSTALL_FILES = $(PROJECT_INCLUDE)
49TMPINSTALL_FILES += $(PROJECT_INCLUDE)/bspopts.h
50TMPINSTALL_FILES += $(PROJECT_INCLUDE)/bsp.h
51TMPINSTALL_FILES += $(PROJECT_INCLUDE)/nvram.h
52TMPINSTALL_FILES += $(PROJECT_INCLUDE)/coverhd.h
53TMPINSTALL_FILES += $(PROJECT_INCLUDE)/tod.h
54
55TMPINSTALL_FILES += $(PROJECT_INCLUDE)/bsp
56TMPINSTALL_FILES += $(PROJECT_INCLUDE)/bsp/motorola.h
57TMPINSTALL_FILES += $(PROJECT_INCLUDE)/bsp/consoleIo.h
58TMPINSTALL_FILES += $(PROJECT_INCLUDE)/bsp/uart.h
59TMPINSTALL_FILES += $(PROJECT_INCLUDE)/bsp/irq.h
60
61all-local: $(TMPINSTALL_FILES)
62
63include $(top_srcdir)/../../../../../../automake/force-preinstall.am
64include $(top_srcdir)/../../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.