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

4.104.114.84.95
Last change on this file since 8c4566a was 8c4566a, checked in by Joel Sherrill <joel.sherrill@…>, on 09/27/01 at 19:39:51

2001-09-27 Ralf Corsepius <corsepiu@…>

  • include/Makefile.am: Use 'PREINSTALL_FILES ='.
  • residual/Makefile.am: Use 'PREINSTALL_FILES ='.
  • vectors/Makefile.am: Use 'PREINSTALL_FILES ='.
  • pci/Makefile.am: Use 'PREINSTALL_FILES ='.
  • openpic/Makefile.am: Use 'PREINSTALL_FILES ='.
  • bootloader/Makefile.am: Use 'CLEANFILES ='.
  • Property mode set to 100644
File size: 1.3 KB
Line 
1##
2## $Id$
3##
4
5AUTOMAKE_OPTIONS = foreign 1.4
6
7H_FILES = ../../shared/include/nvram.h ../../shared/include/bsp.h \
8    ../../../shared/include/coverhd.h
9
10BSP_H_FILES = ../../shared/console/consoleIo.h ../../shared/console/uart.h \
11    ../../shared/irq/irq.h ../../shared/motorola/motorola.h
12
13$(PROJECT_INCLUDE):
14        $(mkinstalldirs) $@
15
16$(PROJECT_INCLUDE)/bsp:
17        $(mkinstalldirs) $@
18
19$(PROJECT_INCLUDE)/nvram.h: ../../shared/include/nvram.h
20        $(INSTALL_DATA) $< $@
21
22$(PROJECT_INCLUDE)/bsp.h: ../../shared/include/bsp.h
23        $(INSTALL_DATA) $< $@
24
25$(PROJECT_INCLUDE)/coverhd.h: ../../../shared/include/coverhd.h
26        $(INSTALL_DATA) $< $@
27
28$(PROJECT_INCLUDE)/bsp/consoleIo.h: ../../shared/console/consoleIo.h
29        $(INSTALL_DATA) $< $@
30
31$(PROJECT_INCLUDE)/bsp/uart.h: ../../shared/console/uart.h
32        $(INSTALL_DATA) $< $@
33
34$(PROJECT_INCLUDE)/bsp/irq.h: ../../shared/irq/irq.h
35        $(INSTALL_DATA) $< $@
36
37$(PROJECT_INCLUDE)/bsp/motorola.h: ../../shared/motorola/motorola.h
38        $(INSTALL_DATA) $< $@
39
40PREINSTALL_FILES = $(PROJECT_INCLUDE) $(PROJECT_INCLUDE)/bsp \
41    $(PROJECT_INCLUDE)/nvram.h $(PROJECT_INCLUDE)/bsp.h \
42    $(PROJECT_INCLUDE)/coverhd.h $(PROJECT_INCLUDE)/bsp/consoleIo.h \
43    $(PROJECT_INCLUDE)/bsp/uart.h $(PROJECT_INCLUDE)/bsp/irq.h \
44    $(PROJECT_INCLUDE)/bsp/motorola.h
45
46all-local: $(PREINSTALL_FILES)
47
48include $(top_srcdir)/../../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.