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

4.104.114.84.95
Last change on this file since bc2f04f was 5fa14794, checked in by Joel Sherrill <joel.sherrill@…>, on 01/10/00 at 14:31:16

Patch rtems-rc-20000104-11.diff from Ralf Corsepius <corsepiu@…>
that converts the i386 directory to automake.

NOTE: Ralf is unable to build any i386 BSPs. This was true before and
after this patch and appears (to Joel) to be a tool issue unrelated since
others can build i386 BSPs.

  • Property mode set to 100644
File size: 1.4 KB
Line 
1#
2#  $Id$
3#
4
5@SET_MAKE@
6srcdir = @srcdir@
7top_srcdir = @top_srcdir@
8top_builddir = ..
9subdir = include
10
11RTEMS_ROOT = @RTEMS_ROOT@
12PROJECT_ROOT = @PROJECT_ROOT@
13
14VPATH = @srcdir@
15
16# This driver needs to be reworked for the BSD stack.
17# We only install wd80x3.h if HAS_NETWORKING was defined
18WD80X3_yes_V = $(srcdir)/wd80x3.h
19WD80X3 = $(WD80X3_$(HAS_NETWORKING)_V)
20
21H_FILES = $(srcdir)/bsp.h $(srcdir)/../../../shared/include/coverhd.h \
22    $(srcdir)/crt.h $(WD80X3)
23
24#
25#  Equate files are for including from assembly preprocessed by
26#  gm4 or gasp.  No examples are provided except for those for
27#  other CPUs.  The best way to generate them would be to
28#  provide a program which generates the constants used based
29#  on the C equivalents.
30#
31
32EQ_FILES =
33
34SRCS = $(H_FILES) $(EQ_FILES)
35
36include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
37include $(RTEMS_ROOT)/make/leaf.cfg
38
39INSTALL_CHANGE = @INSTALL_CHANGE@
40mkinstalldirs = $(SHELL) $(top_srcdir)/@RTEMS_TOPdir@/mkinstalldirs
41
42INSTALLDIRS = $(PROJECT_INCLUDE)
43
44$(INSTALLDIRS):
45        @$(mkinstalldirs) $(INSTALLDIRS)
46
47CLEAN_ADDITIONS +=
48CLOBBER_ADDITIONS +=
49
50all: $(SRCS)
51        @$(INSTALL_CHANGE) -m 644 $(H_FILES) $(PROJECT_INCLUDE)
52        @$(INSTALL_CHANGE) -m 644 $(EQ_FILES) $(PROJECT_INCLUDE)
53
54Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
55        cd $(top_builddir) \
56         && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
Note: See TracBrowser for help on using the repository browser.