summaryrefslogtreecommitdiffstats
path: root/c/src/exec/wrapup
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-04-19 13:19:14 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-04-19 13:19:14 +0000
commit196094eb79c6f6f139f7cab82d50f0dd3240f7dd (patch)
treeeb72b10cbbe98238b6231a7183e80b4ac76bd877 /c/src/exec/wrapup
parentPatch from Ralf Corsepius <corsepiu@faw.uni-ulm.de>: (diff)
downloadrtems-196094eb79c6f6f139f7cab82d50f0dd3240f7dd.tar.bz2
Patch from Ralf Corsepius <corsepiu@faw.uni-ulm.de>:
This one is an enhancement to acpolish. It replaces some Makefile variables by others variable in Makefile.ins (tries to use unique name for some variables). It therefore eases parsing Makefile.ins for further automatic Makefile.in conversions in future. To apply: cd <rtems-source-tree> sh <path-to>/rtems-rc-19990407-8.sh ./autogen
Diffstat (limited to 'c/src/exec/wrapup')
-rw-r--r--c/src/exec/wrapup/Makefile.in2
-rw-r--r--c/src/exec/wrapup/posix/Makefile.in2
-rw-r--r--c/src/exec/wrapup/rtems/Makefile.in4
3 files changed, 4 insertions, 4 deletions
diff --git a/c/src/exec/wrapup/Makefile.in b/c/src/exec/wrapup/Makefile.in
index f66df66fb9..056ad7dd37 100644
--- a/c/src/exec/wrapup/Makefile.in
+++ b/c/src/exec/wrapup/Makefile.in
@@ -15,7 +15,7 @@ PROJECT_ROOT = @PROJECT_ROOT@
VPATH = @srcdir@
-include $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg
+include $(RTEMS_ROOT)/make/custom/${RTEMS_BSP}.cfg
include $(RTEMS_ROOT)/make/directory.cfg
POSIX_DIRS_yes_V=posix
diff --git a/c/src/exec/wrapup/posix/Makefile.in b/c/src/exec/wrapup/posix/Makefile.in
index e329440f64..049e14af53 100644
--- a/c/src/exec/wrapup/posix/Makefile.in
+++ b/c/src/exec/wrapup/posix/Makefile.in
@@ -26,7 +26,7 @@ POSIX_OBJS=$(wildcard ../../posix/src/$(ARCH)/*.o)
OBJS=$(CPU_OBJS) $(CORE_OBJS) $(POSIX_OBJS) $(SAPI_OBJS)
LIB=$(ARCH)/libposix.a
-include $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg
+include $(RTEMS_ROOT)/make/custom/${RTEMS_BSP}.cfg
include $(RTEMS_ROOT)/make/lib.cfg
#
diff --git a/c/src/exec/wrapup/rtems/Makefile.in b/c/src/exec/wrapup/rtems/Makefile.in
index 6d8c0b2e53..af88834b6d 100644
--- a/c/src/exec/wrapup/rtems/Makefile.in
+++ b/c/src/exec/wrapup/rtems/Makefile.in
@@ -23,7 +23,7 @@ RTEMS_OBJS=$(wildcard ../../rtems/src/$(ARCH)/*.o)
OBJS=$(CPU_OBJS) $(CORE_OBJS) $(RTEMS_OBJS) $(SAPI_OBJS)
LIB=$(ARCH)/librtems.a
-include $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg
+include $(RTEMS_ROOT)/make/custom/${RTEMS_BSP}.cfg
include $(RTEMS_ROOT)/make/lib.cfg
#
@@ -51,7 +51,7 @@ CLOBBER_ADDITIONS +=
$(LIB): ${OBJS}
$(make-library)
cd $(PROJECT_ROOT) ; \
- $(SHELL) $(PROJECT_ROOT)/c/src/exec/score/tools/generic/size_rtems $(RTEMS_BSP) $(ARCH) \
+ $(SHELL) $(PROJECT_ROOT)/c/src/exec/score/tools/generic/size_rtems ${RTEMS_BSP} $(ARCH) \
>$(PROJECT_RELEASE)/lib/sizeinfo$(LIB_VARIANT).txt
all: ${ARCH} $(SRCS) $(LIB)