source: rtems/c/src/lib/libbsp/i386/pc386/include/Makefile.in @ 196094eb

4.104.114.84.95
Last change on this file since 196094eb 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: 1.2 KB
RevLine 
[7150f00f]1#
2#  $Id$
3#
4
5@SET_MAKE@
6srcdir = @srcdir@
[d8ff793]7top_srcdir = @top_srcdir@
8top_builddir = ../../../../../../..
9subdir = c/src/lib/libbsp/i386/pc386/include
[7150f00f]10
[8548fe0]11INSTALL = @INSTALL@
12
[d8ff793]13RTEMS_ROOT = $(top_srcdir)/@RTEMS_TOPdir@
14PROJECT_ROOT = @PROJECT_ROOT@
15
16VPATH = @srcdir@
17
[28e7d7fa]18# This driver needs to be reworked for the BSD stack.
[d9d75fc]19# We only install wd80x3.h if HAS_NETWORKING was defined
20WD80X3_yes_V = $(srcdir)/wd80x3.h
21WD80X3 = $(WD80X3_$(HAS_NETWORKING)_V)
[dbab462]22
[67a2288]23H_FILES = $(srcdir)/bsp.h $(srcdir)/coverhd.h  $(srcdir)/crt.h \
[dbab462]24          $(WD80X3)
[7150f00f]25
26#
27#  Equate files are for including from assembly preprocessed by
28#  gm4 or gasp.  No examples are provided except for those for
29#  other CPUs.  The best way to generate them would be to
30#  provide a program which generates the constants used based
31#  on the C equivalents.
32#
33
34EQ_FILES =
35
36SRCS=$(H_FILES) $(EQ_FILES)
37
[196094eb]38include $(RTEMS_ROOT)/make/custom/${RTEMS_BSP}.cfg
[cb5bfe4]39include $(RTEMS_ROOT)/make/leaf.cfg
[7150f00f]40
41CLEAN_ADDITIONS +=
42CLOBBER_ADDITIONS +=
43
44all:    $(SRCS)
[8548fe0]45        $(INSTALL_CHANGE) -m 444 $(H_FILES) $(PROJECT_INCLUDE)
46        $(INSTALL_CHANGE) -m 444 $(EQ_FILES) $(PROJECT_INCLUDE)
[d8ff793]47
48Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
49        cd $(top_builddir) \
50         && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
Note: See TracBrowser for help on using the repository browser.