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

4.104.114.84.95
Last change on this file since e1d8abb was e1d8abb, checked in by Joel Sherrill <joel.sherrill@…>, on 09/07/99 at 13:45:03

Applied patch rtems-rc-19990820-6.diff.gz from
Ralf Corsepius <corsepiu@…> which converted many
Makefile.in's to Makefile.am's. This added a lot of files.

  • Property mode set to 100644
File size: 1.2 KB
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 = powerpc/mpc860/include
14
15RTEMS_ROOT = @RTEMS_ROOT@
16PROJECT_ROOT = @PROJECT_ROOT@
17
18VPATH = @srcdir@
19
20H_FILES = $(srcdir)/mpc860.h
21MPC860_H_FILES = $(srcdir)/console.h
22SRCS = $(H_FILES) $(MPC860_H_FILES)
23
24include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
25include $(RTEMS_ROOT)/make/leaf.cfg
26
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
36
37install: preinstall
38
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
43
44all: FORCEIT
45        cd ../../../../libbsp/$(RTEMS_CPU)/@RTEMS_BSP@/include; $(MAKE) all
46
47Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
48        cd $(top_builddir) \
49         && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
Note: See TracBrowser for help on using the repository browser.