source: rtems/c/src/lib/libcpu/powerpc/mpc860/include/Makefile.in @ 08b5f55

4.104.114.84.95
Last change on this file since 08b5f55 was 08b5f55, checked in by Joel Sherrill <joel.sherrill@…>, on 07/26/99 at 20:31:49

Patch from Ralf Corsepius <corsepiu@…>:

A bug in acpolish made it into rtems-rc-19990709-0.diff, which
unfortunately affects all Makefile.ins:

  • The maintainer mode conditional was erroniously applied to the dependencies of "Makefile".

In case you already checked in rtems-rc-19990709-0.diff to CVS you have
to check in all Makefile.ins again after applying the patch below :).

Please apply the patch below as follows:

patch -p1 < rtems-rc-19990709-1.diff
tools/update/rtems-polish.sh -ac

Note: There is no need to rerun your tests if you have used
--enable-maintainer-mode to configure RTEMS, because this patch converts
all Makefile.ins to the same settings as used for
--enable-maintainer-mode.

  • Property mode set to 100644
File size: 1.2 KB
RevLine 
[ee733965]1#
2#  $Id$
3#
4# Install any include files needed by libcpu.
5# Mainly this just means bsp.h which would normally be installed
6# after libcpu is built.
7# This is a bit of a hack.
8
9@SET_MAKE@
10srcdir = @srcdir@
[d8ff793]11top_srcdir = @top_srcdir@
[6693a68]12top_builddir = ../../../..
13subdir = libcpu/powerpc/mpc860/include
[ee733965]14
[6693a68]15RTEMS_ROOT = @RTEMS_ROOT@
[d8ff793]16PROJECT_ROOT = @PROJECT_ROOT@
17
18VPATH = @srcdir@
19
[6be1238]20H_FILES = $(srcdir)/mpc860.h
21MPC860_H_FILES = $(srcdir)/console.h
[6693a68]22SRCS = $(H_FILES) $(MPC860_H_FILES)
[ee733965]23
[6693a68]24include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
[ee733965]25include $(RTEMS_ROOT)/make/leaf.cfg
26
[6693a68]27INSTALL_CHANGE = @INSTALL_CHANGE@
28mkinstalldirs = $(SHELL) $(top_srcdir)/@RTEMS_TOPdir@/mkinstalldirs
29
30INSTALLDIRS = $(PROJECT_INCLUDE)/mpc860 $(PROJECT_INCLUDE)
31
32$(INSTALLDIRS):
33        @$(mkinstalldirs) $(INSTALLDIRS)
34
35all: install
[ee733965]36
[6be1238]37install: preinstall
38
[6693a68]39preinstall:
40        $(mkinstalldirs) $(PROJECT_INCLUDE)/mpc860
41        @$(INSTALL_CHANGE) -m 644 $(H_FILES) $(PROJECT_INCLUDE)
42        @$(INSTALL_CHANGE) -m 644 $(MPC860_H_FILES) $(PROJECT_INCLUDE)/mpc860
[ee733965]43
44all: FORCEIT
[6693a68]45        cd ../../../../libbsp/$(RTEMS_CPU)/@RTEMS_BSP@/include; $(MAKE) all
[ee733965]46
[08b5f55]47Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
[d8ff793]48        cd $(top_builddir) \
49         && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
Note: See TracBrowser for help on using the repository browser.