aboutsummaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorFred Fish <fnf@specifix.com>1993-01-06 19:04:18 +0000
committerFred Fish <fnf@specifix.com>1993-01-06 19:04:18 +0000
commitbc2a2c17cccdf948fa251a0a2c2de3849e2b572b (patch)
tree784e61c027b5075927546caf78bd3dce5d674cee /Makefile.in
parenta944e79a999ca5504b9f4220943032b5bbcc1e93 (diff)
downloadgdb-bc2a2c17cccdf948fa251a0a2c2de3849e2b572b.zip
gdb-bc2a2c17cccdf948fa251a0a2c2de3849e2b572b.tar.gz
gdb-bc2a2c17cccdf948fa251a0a2c2de3849e2b572b.tar.bz2
* Makefile.in (GCC_FOR_TARGET): Supply a default that matches
the one used in gcc/Makefile.in, so that a null expansion doesn't override the one needed to build gcc with a native cc.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in37
1 files changed, 31 insertions, 6 deletions
diff --git a/Makefile.in b/Makefile.in
index 44359ac..cee8d2b 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -56,6 +56,7 @@ CC = cc
CFLAGS = -g
CXX = gcc
CXXFLAGS = -g -O
+GCC_FOR_TARGET = ./gcc -B./
RANLIB = ranlib
NM = nm
@@ -77,7 +78,7 @@ MAKEINFO = `if [ -f $${rootme}/texinfo/C/makeinfo ] ; \
CC_FOR_BUILD = $(CC)
CXX_FOR_BUILD = $(CXX)
-SUBDIRS = libiberty mmalloc glob readline opcodes bfd h8300sim z8ksim gdb binutils ld gas tgas gcc libg++ newlib deja-gnu
+SUBDIRS = libiberty mmalloc glob readline opcodes bfd h8300sim z8ksim gdb binutils ld gas tgas gcc libg++ newlib chillrt deja-gnu
OTHERS =
ALL = all.normal
@@ -199,7 +200,7 @@ X11_FLAGS_TO_PASS = \
"X11_LIB_FLAGS=$(X11_LIB_FLAGS)"
# Flags to pass down to makes which are built with the target
-# environment (e.g. libg++, xiberty, newlib). -- keep these in alpha order please
+# environment (e.g. libg++, xiberty, newlib, chillrt). -- keep these in alpha order please
TARGET_FLAGS_TO_PASS = \
"AR=$(AR_FOR_TARGET)" \
"AR_FLAGS=$(AR_FLAGS)" \
@@ -254,14 +255,14 @@ all.normal: all-m4 all-autoconf all-libiberty all-mmalloc all-texinfo \
all-make all-rcs all-cvs all-diff all-grep \
all-patch all-emacs all-ispell all-etc \
all-tcl all-tk all-expect \
- all-newlib all-gprof all-send_pr all-libm all-deja-gnu \
+ all-newlib all-chillrt all-gprof all-send_pr all-libm all-deja-gnu \
all-fileutils all-find all-gawk all-sed all-shellutils \
all-textutils all-time all-wdiff
all.cross: all-libiberty all-mmalloc all-gas all-byacc all-flex all-ld \
all-opcodes all-z8ksim all-h8300sim all-bfd all-readline all-gdb all-binutils all-gcc \
- all-newlib all-deja-gnu
+ all-newlib all-chillrt all-deja-gnu
.PHONY: clean distclean mostlyclean realclean do_clean
@@ -320,6 +321,7 @@ install-no-fixedincludes: install-dirs gcc-no-fixedincludes \
install-make \
install-mmalloc \
install-newlib \
+ install-chillrt \
install-patch \
install-rcs \
install-readline \
@@ -346,7 +348,7 @@ install.cross: install-dirs install-libiberty install-mmalloc \
install-binutils install-opcodes install-byacc install-flex \
install-ld install-gas install-readline \
install-glob install-gdb install-mmalloc \
- install-newlib install-gcc install-etc install-deja-gnu
+ install-newlib install-chillrt install-gcc install-etc install-deja-gnu
### deja-gnu
all-deja-gnu: force
@@ -556,6 +558,29 @@ install-newlib: force
true ; \
fi
+### start-sanitize-chill
+### chillrt
+all-chillrt: all-binutils all-ld all-gas all-gcc
+ @if [ -f ./chillrt/Makefile ] ; then \
+ rootme=`pwd` ; export rootme ; \
+ srcroot=`cd $(srcdir); pwd` ; export srcroot ; \
+ (cd ./chillrt; \
+ $(MAKE) $(TARGET_FLAGS_TO_PASS) all) ; \
+ else \
+ true ; \
+ fi
+
+install-chillrt: force
+ @if [ -f ./chillrt/Makefile ] ; then \
+ rootme=`pwd` ; export rootme ; \
+ srcroot=`cd $(srcdir); pwd` ; export srcroot ; \
+ (cd ./chillrt; \
+ $(MAKE) $(TARGET_FLAGS_TO_PASS) install) ; \
+ else \
+ true ; \
+ fi
+### end-sanitize-chill
+
### gprof
all-gprof: all-libiberty all-bfd
@if [ -f ./gprof/Makefile ] ; then \
@@ -1214,7 +1239,7 @@ subdir_do:
@for i in $(DODIRS); do \
if [ -f ./$$i/localenv ] || [ -f ./$$i/Makefile ] ; then \
case $$i in \
- libg++ | xiberty | newlib) \
+ libg++ | xiberty | newlib | chillrt) \
if (rootme=`pwd` ; export rootme ; \
srcroot=`cd $(srcdir); pwd` ; export srcroot ; \
cd ./$$i ; \