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

4.104.114.84.95
Last change on this file since fbe75c6e was 196094eb, checked in by Joel Sherrill <joel.sherrill@…>, on 04/19/99 at 13:19:14

Patch from Ralf Corsepius <corsepiu@…>:

This one is an enhancement to acpolish.

It replaces some Makefile variables by others variable in Makefile.ins
(tries to use unique name for some variables). It therefore eases
parsing Makefile.ins for further automatic Makefile.in conversions in
future.

To apply:

cd <rtems-source-tree>
sh <path-to>/rtems-rc-19990407-8.sh
./autogen

  • Property mode set to 100644
File size: 952 bytes
Line 
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@
11top_srcdir = @top_srcdir@
12top_builddir = ../../../../../../..
13subdir = c/src/lib/libcpu/powerpc/mpc860/include
14
15INSTALL = @INSTALL@
16
17RTEMS_ROOT = $(top_srcdir)/@RTEMS_TOPdir@
18PROJECT_ROOT = @PROJECT_ROOT@
19
20VPATH = @srcdir@
21
22H_FILES = $(wildcard $(srcdir)/*.h)
23SRCS=$(H_FILES)
24
25include $(RTEMS_ROOT)/make/custom/${RTEMS_BSP}.cfg
26include $(RTEMS_ROOT)/make/leaf.cfg
27
28all:    install
29
30install:
31        $(RTEMS_ROOT)/mkinstalldirs $(PROJECT_INCLUDE)/mpc860
32        $(INSTALL_CHANGE) -m 444 $(H_FILES) $(PROJECT_INCLUDE)/mpc860
33
34all: FORCEIT
35        cd ../../../../libbsp/$(RTEMS_CPU)/${RTEMS_BSP}/include; $(MAKE) all
36
37Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
38        cd $(top_builddir) \
39         && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
Note: See TracBrowser for help on using the repository browser.