4.104.114.84.95
Last change
on this file since 594a413 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:
961 bytes
|
Line | |
---|
1 | # |
---|
2 | # $Id$ |
---|
3 | # |
---|
4 | |
---|
5 | @SET_MAKE@ |
---|
6 | srcdir = @srcdir@ |
---|
7 | VPATH = @srcdir@ |
---|
8 | RTEMS_ROOT = @top_srcdir@ |
---|
9 | PROJECT_ROOT = @PROJECT_ROOT@ |
---|
10 | |
---|
11 | LIB=$(ARCH)/libmisc.a |
---|
12 | |
---|
13 | include $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg |
---|
14 | include $(RTEMS_ROOT)/make/lib.cfg |
---|
15 | |
---|
16 | # Using the wildcard on the Purify support makes sure it may not be there |
---|
17 | |
---|
18 | LIBS=../monitor/$(ARCH)/libmonitor-tmp.a \ |
---|
19 | ../error/$(ARCH)/liberror-tmp.a \ |
---|
20 | ../assoc/$(ARCH)/libassoc-tmp.a \ |
---|
21 | ../stackchk/$(ARCH)/libstackchk-tmp.a \ |
---|
22 | ../cpuuse/$(ARCH)/libcpuuse-tmp.a \ |
---|
23 | ../rtmonuse/$(ARCH)/librtmonuse-tmp.a \ |
---|
24 | $(wildcard ../purify/$(ARCH)/libpurify-tmp.a) |
---|
25 | RELS= |
---|
26 | |
---|
27 | CLEAN_ADDITIONS += |
---|
28 | CLOBBER_ADDITIONS += |
---|
29 | |
---|
30 | $(LIB): ${LIBS} $(RELS) |
---|
31 | $(RM) -r $(ARCH) |
---|
32 | $(MKDIR) $(ARCH) |
---|
33 | cd $(ARCH); for lib in $(LIBS:%=../%); do \ |
---|
34 | $(AR) -xv $$lib; \ |
---|
35 | done |
---|
36 | $(RM) $@ |
---|
37 | $(AR) ruv $@ $(ARCH)/* |
---|
38 | $(MKLIB) $@ |
---|
39 | |
---|
40 | all: ${ARCH} $(SRCS) $(LIB) |
---|
41 | $(INSTALL_VARIANT) -m 644 $(LIB) ${PROJECT_RELEASE}/lib |
---|
42 | |
---|
Note: See
TracBrowser
for help on using the repository browser.