source: rtems/c/src/lib/libbsp/unix/posix/wrapup/Makefile.in @ 5c3511e

4.104.114.84.95
Last change on this file since 5c3511e was 5c3511e, checked in by Joel Sherrill <joel.sherrill@…>, on 01/30/98 at 21:49:51

Big patch form Ralf Corsepius described in this email:

Here is the result of my nightly work to get RTEMS_ROOT=$srcdir working
with different shells and relative/absolute paths.

What I did is relatively simple in principle:
Instead of setting RTEMS_ROOT in configure.in and then let configure
substitute @RTEMS_ROOT@ inside the Makefiles, I now let each Makefile
set RTEMS_ROOT from each Makefile's @top_srcdir@ value.

The difference is subtile, but with enormous side effects:

  • If RTEMS_ROOT is set in configure, then the same single value will be propagated to all Makefiles. This breaks using relative paths, as the relative path to the root of the source tree is used inside of all subdirectory Makefiles.
  • Now each Makefile.in sets RTEMS_ROOT = @top_srcdir@. top_srcdir is computed individually by configure for each single Makefile.in, hereby receiving the correct value, no matter if relative or absolute paths are used.

To get this working, I needed to remove setting RTEMS_ROOT from
target.cfg.in, because this overrides the value of RTEMS_ROOT from each
individual Makefile.

Furthermore, I removed RTEMS_CUSTOM from the Makefiles and replaced all
"include $(RTEMS_CUSTOM)" directives with"include
$(RTEMS_ROOT)/make/custom/$(RTEMS_BSP)". Perhaps you don't like this,
but I think, to have one variable less is clearer and easier to
understand than having several variables refering to the next one.

I enclose a small patch to this mail, which

  • fixes the config.h problem (to finally clearify misunderstands)
  • removes assignment/subsitution of RTEMS_ROOT from configure.in
  • contains a workaround for the application Makefile's RTEMS_ROOT problem (reported by Eric)
  • removes some unused lines from the toplevel Makefile.in
  • removes assignment of RTEMS_ROOT from make/target.cfg.in
  • Property mode set to 100644
File size: 1.5 KB
Line 
1#
2#  $Id$
3#
4
5@SET_MAKE@
6srcdir = @srcdir@
7VPATH = @srcdir@
8RTEMS_ROOT = @top_srcdir@
9PROJECT_ROOT = @PROJECT_ROOT@
10
11# MP_XXX_PARTS are the pieces of the BSP required in a MP environment
12# We only build them if HAS_MP was defined
13 
14MP_BSP_PARTS_yes_V = shmsupp
15MP_BSP_PARTS = $(MP_BSP_PARTS_$(HAS_MP)_V)
16
17MP_GENERIC_PARTS_yes_V = shmdr
18MP_GENERIC_PARTS = $(MP_GENERIC_PARTS_$(HAS_MP)_V)
19
20
21
22BSP_PIECES=startup clock console $(MP_BSP_PARTS) timer
23# pieces to pick up out of libcpu/unix
24CPU_PIECES=
25GENERIC_PIECES=$(MP_GENERIC_PARTS)
26
27# bummer; have to use $foreach since % pattern subst rules only replace 1x
28OBJS=$(foreach piece, $(BSP_PIECES), ../$(piece)/$(ARCH)/$(piece).rel) \
29     $(foreach piece, $(CPU_PIECES), \
30       ../../../../libcpu/$(RTEMS_CPU)/$(piece)/$(ARCH)/$(piece).rel) \
31     $(foreach piece, $(GENERIC_PIECES), \
32       ../../../$(piece)/$(ARCH)/$(piece).rel)
33LIB=$(ARCH)/libbsp.a
34
35include $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg
36include $(RTEMS_ROOT)/make/lib.cfg
37
38#
39# (OPTIONAL) Add local stuff here using +=
40#
41
42DEFINES  +=
43CPPFLAGS +=
44CFLAGS   +=
45
46LD_PATHS  +=
47LD_LIBS   +=
48LDFLAGS   +=
49
50#
51# Add your list of files to delete here.  The config files
52#  already know how to delete some stuff, so you may want
53#  to just run 'make clean' first to see what gets missed.
54#  'make clobber' already includes 'make clean'
55#
56
57CLEAN_ADDITIONS +=
58CLOBBER_ADDITIONS +=
59
60$(LIB): ${OBJS}
61        $(make-library)
62
63all:    ${ARCH} $(SRCS) $(LIB)
64        $(INSTALL_VARIANT) -m 644 $(LIB) ${PROJECT_RELEASE}/lib
65
Note: See TracBrowser for help on using the repository browser.