source: rtems/c/src/lib/libbsp/i960/rxgen960/include/Makefile.in @ 59909bf

4.104.114.84.95
Last change on this file since 59909bf was 59909bf, checked in by Joel Sherrill <joel.sherrill@…>, on 01/10/00 at 14:09:12

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

The same kind of libbsp configuration as for the mips64orion, now for
the i960.

In addition to libbsp configuration this patch also contains two fixes
for cvme961.cfg and rxgen960.cfg, which contained non-functional
make-exes. (Now both bsps probably have the same issues with linking c++
applications as the gensh2 has, but this is a different open issue not
tried to be solved now).

The rxgen961 also seems to have problems with its start file, because
linking apps fails due to not finding start.o. (Note that
libbsp/i960/rxgen960 lacks a start subdirectory!). I leave solving this
issue to you :)

  • Property mode set to 100644
File size: 1.3 KB
RevLine 
[702c5f5]1#
2#  $Id$
3#
4
5@SET_MAKE@
6srcdir = @srcdir@
[919822f]7top_srcdir = @top_srcdir@
[59909bf]8top_builddir = ..
9subdir = include
[919822f]10
11RTEMS_ROOT = @RTEMS_ROOT@
[702c5f5]12PROJECT_ROOT = @PROJECT_ROOT@
13
[919822f]14VPATH = @srcdir@
15
[393be8e]16H_FILES = $(srcdir)/bsp.h $(srcdir)/../../../shared/include/coverhd.h
[702c5f5]17
18#
19#  Equate files are for including from assembly preprocessed by
20#  gm4 or gasp.  No examples are provided except for those for
21#  other CPUs.  The best way to generate them would be to
22#  provide a program which generates the constants used based
23#  on the C equivalents.
24#
25#  If you add equate files, don't forget to uncomment the install line
26#  below.
27#
28
29EQ_FILES =
30
[919822f]31SRCS = $(H_FILES) $(EQ_FILES)
[702c5f5]32
[919822f]33include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
[702c5f5]34include $(RTEMS_ROOT)/make/leaf.cfg
35
[919822f]36INSTALL_CHANGE = @INSTALL_CHANGE@
37mkinstalldirs = $(SHELL) $(top_srcdir)/@RTEMS_TOPdir@/mkinstalldirs
38
39INSTALLDIRS = $(PROJECT_INCLUDE) $(PROJECT_INCLUDE)/cpu
40
41$(INSTALLDIRS):
42        @$(mkinstalldirs) $(INSTALLDIRS)
43
[702c5f5]44CLEAN_ADDITIONS +=
45CLOBBER_ADDITIONS +=
46
[919822f]47all: $(SRCS)
48        @$(INSTALL_CHANGE) -m 644 $(H_FILES) $(PROJECT_INCLUDE)
49        @$(INSTALL_CHANGE) -m 644 $(EQ_FILES) $(PROJECT_INCLUDE)/cpu
50
51install: all
[702c5f5]52
[919822f]53Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
54        cd $(top_builddir) \
55         && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
Note: See TracBrowser for help on using the repository browser.