source: rtems/c/src/lib/libbsp/m68k/efi68k/Makefile.am @ 68be514

4.104.114.84.95
Last change on this file since 68be514 was 68be514, checked in by Ralf Corsepius <ralf.corsepius@…>, on 01/07/04 at 03:48:45

2004-01-07 Ralf Corsepius <corsepiu@…>

  • start/Makefile.am: Remove.
  • Makefile.am: Merge-in start/Makefile.am.
  • configure.ac: Reflect changes above.
  • Property mode set to 100644
File size: 1.8 KB
Line 
1##
2## $Id$
3##
4
5ACLOCAL_AMFLAGS = -I ../../../../aclocal
6
7include $(top_srcdir)/../../../../automake/compile.am
8include $(top_srcdir)/../../bsp.am
9
10# wrapup is the one that actually builds and installs the library
11# from the individual .rel files built in other directories
12SUBDIRS = . startup clock console spurious timer wrapup
13
14nodist_include_HEADERS += $(top_srcdir)/../../shared/include/coverhd.h
15include_HEADERS += include/efi68k.h
16include_HEADERS += include/16550.h
17include_HEADERS += include/DP8570A.h
18
19EXTRA_DIST = times
20
21C_FILES = start/start.C
22$(ARCH)/%$(LIB_VARIANT).$(OBJEXT): start/start.c $(ARCH)/$(dirstamp)
23        $(COMPILE) -o $@ -c $<
24
25project_lib_DATA = $(ARCH)/start$(LIB_VARIANT).$(OBJEXT)
26
27all-local: $(PREINSTALL_FILES) $(TMPINSTALL_FILES)
28
29TMPINSTALL_FILES =
30
31$(PROJECT_INCLUDE)/coverhd.h: $(top_srcdir)/../../shared/include/coverhd.h $(PROJECT_INCLUDE)/$(dirstamp)
32        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/coverhd.h
33PREINSTALL_FILES += $(PROJECT_INCLUDE)/coverhd.h
34
35$(PROJECT_INCLUDE)/efi68k.h: include/efi68k.h $(PROJECT_INCLUDE)/$(dirstamp)
36        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/efi68k.h
37PREINSTALL_FILES += $(PROJECT_INCLUDE)/efi68k.h
38
39$(PROJECT_INCLUDE)/16550.h: include/16550.h $(PROJECT_INCLUDE)/$(dirstamp)
40        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/16550.h
41PREINSTALL_FILES += $(PROJECT_INCLUDE)/16550.h
42
43$(PROJECT_INCLUDE)/DP8570A.h: include/DP8570A.h $(PROJECT_INCLUDE)/$(dirstamp)
44        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/DP8570A.h
45PREINSTALL_FILES += $(PROJECT_INCLUDE)/DP8570A.h
46
47$(PROJECT_LIB)/start$(LIB_VARIANT).$(OBJEXT): $(ARCH)/start$(LIB_VARIANT).$(OBJEXT) $(PROJECT_LIB)/$(dirstamp)
48        $(INSTALL_DATA) $< $(PROJECT_LIB)/start$(LIB_VARIANT).$(OBJEXT)
49TMPINSTALL_FILES += $(PROJECT_LIB)/start$(LIB_VARIANT).$(OBJEXT)
50
51include $(top_srcdir)/../../../../automake/subdirs.am
52include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.