source: rtems/c/src/lib/libbsp/m68k/mvme162/Makefile.am @ 203cb9a

4.104.114.84.95
Last change on this file since 203cb9a was 203cb9a, checked in by Ralf Corsepius <ralf.corsepius@…>, on 12/03/03 at 07:33:58

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

  • Makefile.am: Add preinstallation dirstamp support.
  • clock/Makefile.am: Cosmetics.
  • console/Makefile.am: Cosmetics.
  • consolex/Makefile.am: Add preinstallation dirstamp support.
  • network/Makefile.am: Cosmetics.
  • startup/Makefile.am: Cosmetics.
  • timer/Makefile.am: Cosmetics.
  • tod/Makefile.am: Cosmetics.
  • tools/Makefile.am: Cosmetics.
  • wrapup/Makefile.am: Cosmetics.
  • Property mode set to 100644
File size: 1.8 KB
Line 
1##
2## $Id$
3##
4
5ACLOCAL_AMFLAGS = -I ../../../../aclocal
6
7# consolex is a predecessor of the termios and libchip concepts.
8# It is no longer being compiled into the source.
9# The MVME162 has 2 z8530's to yield four serial ports.
10# The application can access these by referencing the consolex driver
11# with "CONSOLEX_DRIVER_TABLE_ENTRY" in the driver table definition,
12# in place of "CONSOLE_DRIVER_TABLE_ENTRY". See consolex/cTest.c for
13# an example.
14
15# wrapup is the one that actually builds and installs the library
16# from the individual .rel files built in other directories
17SUBDIRS = . start startup clock console timer tod network wrapup tools
18
19include $(top_srcdir)/../../bsp.am
20
21include_HEADERS += include/coverhd.h
22include_HEADERS += include/page_table.h
23include_HEADERS += include/tod.h
24
25nodist_include_HEADERS += $(top_srcdir)/../shared/mvme/mvme16x_hw.h
26
27all-local: $(PREINSTALL_FILES)
28
29EXTRA_DIST = times
30
31    $(top_srcdir)/../shared/mvme/mvme16x_hw.h
32        $(INSTALL_DATA) $< $@
33
34$(PROJECT_INCLUDE)/coverhd.h: include/coverhd.h $(PROJECT_INCLUDE)/$(dirstamp)
35        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/coverhd.h
36PREINSTALL_FILES += $(PROJECT_INCLUDE)/coverhd.h
37
38$(PROJECT_INCLUDE)/page_table.h: include/page_table.h $(PROJECT_INCLUDE)/$(dirstamp)
39        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/page_table.h
40PREINSTALL_FILES += $(PROJECT_INCLUDE)/page_table.h
41
42$(PROJECT_INCLUDE)/tod.h: include/tod.h $(PROJECT_INCLUDE)/$(dirstamp)
43        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/tod.h
44PREINSTALL_FILES += $(PROJECT_INCLUDE)/tod.h
45
46$(PROJECT_INCLUDE)/mvme16x_hw.h: $(top_srcdir)/../shared/mvme/mvme16x_hw.h $(PROJECT_INCLUDE)/$(dirstamp)
47        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/mvme16x_hw.h
48PREINSTALL_FILES += $(PROJECT_INCLUDE)/mvme16x_hw.h
49
50include $(top_srcdir)/../../../../automake/subdirs.am
51include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.