source: rtems/c/src/lib/libbsp/hppa1.1/pxfl/Makefile.in @ bbbd11c

4.104.114.84.95
Last change on this file since bbbd11c was 254b4450, checked in by Joel Sherrill <joel.sherrill@…>, on 04/01/97 at 23:07:52

This set of changes is the build of what was required to convert to
GNU autoconf. This is the first large step in allowing an RTEMS
user to perform a one-tree build (per crossgcc FAQ) including RTEMS
in the build process. With this change RTEMS is configured in
built in the same style as the GNU tools, yet retains the basic
structure of its traditional Makefiles (ala Tony Bennett).
Jiri Gaisler (jgais@…) deserves (and received)
a big thank you for doing this.

There are still issues to be resolved but as of this commit, all target
which can be built on a linux host have been using a modified version
of the source Jiri submitted. This source was merged and most targets
built in the tree before this commit.

There are some issues which remain to be resolved but they are primarily
related to host OS dependencies, script issues, the use of gawk
for hack_specs, and the dependence on gcc snapshots. These will
be resolved.

  • Property mode set to 100644
File size: 1.2 KB
Line 
1#
2# Build the pixelflow bsp by cd'ing into another floss tree and
3#  building it there.
4#
5# NOTE: we also jump sideways in rtems tree and install test/support/include
6#       so that floss tests can use the rtems test structures
7#
8#  $Id$
9#
10
11@SET_MAKE@
12srcdir = @srcdir@
13top_srcdir = @top_srcdir@
14VPATH=@srcdir@
15
16include $(RTEMS_CUSTOM)
17include $(PROJECT_ROOT)/make/leaf.cfg
18
19SRCS=$(srcdir)/floss-bsp.h
20
21# HACK alert
22# on a 'make -k' we don't want to bomb out of build
23EXIT_CMD=exit 1
24ifeq (k, $(findstring k, $(MAKEFLAGS)))
25EXIT_CMD=true
26endif
27
28
29all install::
30        @$(ECHO); $(ECHO)
31        @if [ ! -d $(FLOSS_ROOT) ]; \
32        then \
33            $(ECHO) "*** ERROR FLOSS_ROOT ($(FLOSS_ROOT)) points to nonexistent directory"; \
34            $(ECHO); $(ECHO); \
35            $(EXIT_CMD); \
36        fi
37        @if [ -f $(FLOSS_ROOT)/PURE ]; \
38        then \
39            $(ECHO) "*** Assuming $(FLOSS_HOME) up to date since ./PURE exists"; \
40        else \
41            cmd="cd $(RTEMS_ROOT)/c/src/tests/support/include; $(MAKE) install"; \
42            $(ECHO) $$cmd; \
43            eval $$cmd || $(EXIT_CMD); \
44            cmd="cd $(FLOSS_ROOT); $(MAKE) $@"; \
45            $(ECHO) $$cmd; \
46            eval $$cmd || $(EXIT_CMD); \
47        fi
48        @$(ECHO); $(ECHO)
49        $(INSTALL) -m 444 $(srcdir)/floss-bsp.h $(PROJECT_RELEASE)/include/bsp.h
Note: See TracBrowser for help on using the repository browser.