source: rtems/c/src/lib/libbsp/powerpc/shared/console/Makefile.am @ ecfe4f8a

4.104.114.84.95
Last change on this file since ecfe4f8a was ecfe4f8a, checked in by Ralf Corsepius <ralf.corsepius@…>, on 12/12/03 at 13:29:42

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

  • console/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
  • irq/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
  • motorola/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
  • openpic/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
  • pci/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
  • residual/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
  • vectors/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
  • Property mode set to 100644
File size: 1003 bytes
Line 
1##
2## $Id$
3##
4
5C_FILES = console.c inch.c polled_io.c uart.c reboot.c
6
7include_bspdir = $(includedir)/bsp
8include_bsp_HEADERS = consoleIo.h keyboard.h uart.h
9
10all-local: $(PREINSTALL_FILES)
11
12EXTRA_DIST = console.c inch.c polled_io.c uart.c reboot.c console.inl
13
14PREINSTALL_FILES =
15
16$(PROJECT_INCLUDE)/bsp/$(dirstamp):
17        @$(mkdir_p) $(PROJECT_INCLUDE)/bsp
18        @: > $(PROJECT_INCLUDE)/bsp/$(dirstamp)
19
20$(PROJECT_INCLUDE)/bsp/consoleIo.h: consoleIo.h $(PROJECT_INCLUDE)/bsp/$(dirstamp)
21        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/bsp/consoleIo.h
22PREINSTALL_FILES += $(PROJECT_INCLUDE)/bsp/consoleIo.h
23
24$(PROJECT_INCLUDE)/bsp/keyboard.h: keyboard.h $(PROJECT_INCLUDE)/bsp/$(dirstamp)
25        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/bsp/keyboard.h
26PREINSTALL_FILES += $(PROJECT_INCLUDE)/bsp/keyboard.h
27
28$(PROJECT_INCLUDE)/bsp/uart.h: uart.h $(PROJECT_INCLUDE)/bsp/$(dirstamp)
29        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/bsp/uart.h
30PREINSTALL_FILES += $(PROJECT_INCLUDE)/bsp/uart.h
31
32include $(top_srcdir)/../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.