libdir = $(exec_prefix)/lib
tooldir = $(libdir)
+program_transform_name =
+
datadir = $(prefix)/lib
mandir = $(prefix)/man
man1dir = $(mandir)/man1
INSTALL_PROGRAM = $(INSTALL)
INSTALL_DATA = $(INSTALL)
+AS = as
AR = ar
AR_FLAGS = qc
CFLAGS = -g
RANLIB = ranlib
+NM = nm
-BISON = `if [ -d $${rootme}/bison ] ; \
- then echo $${rootme}/bison -L $${rootme}/bison/ -y ; \
- else \
- if [ -d $${rootme}/byacc ] ; \
+BISON = `if [ -f $${rootme}/byacc/byacc ] ; \
then echo $${rootme}/byacc/byacc ; \
else echo bison -y ; \
- fi ; \
fi`
-LEX = `if [ -d $${rootme}/flex ] ; \
- then echo $${rootme}/flex/flex -S$${rootme}/flex/flex.skel ; \
+LEX = `if [ -f $${rootme}/flex/flex ] ; \
+ then echo $${rootme}/flex/flex ; \
else echo flex ; fi`
-MAKEINFO = `if [ -d $${rootme}/texinfo/C ] ; \
+MAKEINFO = `if [ -f $${rootme}/texinfo/C/makeinfo ] ; \
then echo $${rootme}/texinfo/C/makeinfo ; \
else echo makeinfo ; fi`
-SUBDIRS = libiberty mmalloc glob readline bfd gdb binutils ld gas gcc libg++ libgcc clib newlib libm
+# C compiler to use to create programs which must be run in the build
+# environment.
+CC_FOR_BUILD = $(CC)
+
+SUBDIRS = libiberty mmalloc glob readline opcodes bfd gdb binutils ld gas tgas gcc libg++ newlib
OTHERS =
ALL = all.normal
### for debugging
#GCCVERBOSE=-v
-GXX = `if [ -d $${rootme}/gcc ] ; \
- then echo $${rootme}/gcc/gcc -B$${rootme}/gcc/ ; \
- else echo gcc ; fi`
-
-XTRAFLAGS = `if [ -d $${rootme}/gcc ] ; \
- then echo -I$${rootme}/gcc/include ; \
- else echo ; fi`
+CC_FOR_TARGET = ` \
+ if [ -f $${rootme}/gcc/Makefile ] ; then \
+ echo $${rootme}/gcc/gcc -B$${rootme}/gcc/; \
+ else \
+ if [ "$(host_cpu)-$(host_vendor)-$(host_os)" = "$(target_cpu)-$(target_vendor)-$(target_os)" ] ; then \
+ echo $(CC); \
+ else \
+ t='$(program_transform_name)'; echo gcc | sed -e '' $$t; \
+ fi; \
+ fi`
+
+AS_FOR_TARGET = ` \
+ if [ -f $${rootme}/gas/Makefile ] ; then \
+ echo $${rootme}/gas/as.new ; \
+ else \
+ if [ "$(host_cpu)-$(host_vendor)-$(host_os)" = "$(target_cpu)-$(target_vendor)-$(target_os)" ] ; then \
+ echo $(AS); \
+ else \
+ t='$(program_transform_name)'; echo as | sed -e '' $$t ; \
+ fi \
+ fi`
+
+AR_FOR_TARGET = ` \
+ if [ -f $${rootme}/binutils/Makefile ] ; then \
+ echo $${rootme}/binutils/ar ; \
+ else \
+ if [ "$(host_cpu)-$(host_vendor)-$(host_os)" = "$(target_cpu)-$(target_vendor)-$(target_os)" ] ; then \
+ echo $(AR); \
+ else \
+ t='$(program_transform_name)'; echo ar | sed -e '' $$t ; \
+ fi \
+ fi`
+
+RANLIB_FOR_TARGET = ` \
+ if [ -f $${rootme}/binutils/Makefile ] ; then \
+ echo $${rootme}/binutils/ranlib ; \
+ else \
+ if [ "$(host_cpu)-$(host_vendor)-$(host_os)" = "$(target_cpu)-$(target_vendor)-$(target_os)" ] ; then \
+ echo $(RANLIB); \
+ else \
+ t='$(program_transform_name)'; echo ranlib | sed -e '' $$t ; \
+ fi \
+ fi`
+
+NM_FOR_TARGET = ` \
+ if [ -f $${rootme}/binutils/Makefile ] ; then \
+ echo $${rootme}/binutils/nm ; \
+ else \
+ if [ "$(host_cpu)-$(host_vendor)-$(host_os)" = "$(target_cpu)-$(target_vendor)-$(target_os)" ] ; then \
+ echo $(NM); \
+ else \
+ t='$(program_transform_name)'; echo nm | sed -e '' $$t ; \
+ fi \
+ fi`
+
+XTRAFLAGS = ` \
+ if [ -f $${rootme}/gcc/Makefile ] ; then \
+ if [ "$(host_cpu)-$(host_vendor)-$(host_os)" = "$(target_cpu)-$(target_vendor)-$(target_os)" ] ; then \
+ echo -I$${rootme}/gcc/include ; \
+ else \
+ echo -I$${rootme}/gcc/include -I$${rootme}/newlib/targ-include -I$${srcroot}/newlib/libc/include ; \
+ fi ; \
+ else \
+ echo ; \
+ fi`
#### host and target specific makefile fragments come in here.
###
+# Flags to pass down to sub-makes
FLAGS_TO_PASS = \
"prefix=$(prefix)" \
"exec_prefix=$(exec_prefix)" \
"MAKEINFO=$(MAKEINFO)" \
"INSTALL=$(INSTALL)" \
"INSTALL_DATA=$(INSTALL_DATA)" \
- "INSTALL_PROGRAM=$(INSTALL_PROGRAM)"
+ "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
+ "CC_FOR_BUILD=$(CC_FOR_BUILD)"
+
+# Flags to pass down to makes which are built with the target
+# environment (e.g. libg++, xiberty, newlib).
+TARGET_FLAGS_TO_PASS = \
+ "prefix=$(prefix)" \
+ "exec_prefix=$(exec_prefix)" \
+ "tooldir=$(tooldir)" \
+ "AR_FLAGS=$(AR_FLAGS)" \
+ "CFLAGS=$(CFLAGS)" \
+ "LOADLIBES=$(LOADLIBES)" \
+ "LDFLAGS=$(LDFLAGS)" \
+ "BISON=$(BISON)" \
+ "LEX=$(LEX)" \
+ "MAKEINFO=$(MAKEINFO)" \
+ "INSTALL=$(INSTALL)" \
+ "INSTALL_DATA=$(INSTALL_DATA)" \
+ "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
+ "CC_FOR_BUILD=$(CC_FOR_BUILD)" \
+ "CC=$(CC_FOR_TARGET)" \
+ "AS=$(AS_FOR_TARGET)" \
+ "AR=$(AR_FOR_TARGET)" \
+ "RANLIB=$(RANLIB_FOR_TARGET)" \
+ "NM=$(NM_FOR_TARGET)" \
+ "XTRAFLAGS=$(XTRAFLAGS)"
.PHONY: all info install-info clean-info
.NOEXPORT:
all: $(ALL)
-info: cfg-paper.info configure.info standards.info
- @rootme=`pwd` ; export rootme ; $(MAKE) subdir_do DO=info "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
+info:
+ @rootme=`pwd` ; export rootme ; $(MAKE) $(FLAGS_TO_PASS) subdir_do DO=info "DODIRS=$(SUBDIRS)"
-# Note libg++ has to be handled specially (we can't compile it with CC=cc).
check:
- @rootme=`pwd` ; export rootme ; $(MAKE) subdir_do DO=check \
- "DODIRS=`echo $(SUBDIRS) | sed -e \"s/libg\+\+//\"" $(FLAGS_TO_PASS)
- @rootme=`pwd` ; export rootme ; $(MAKE) subdir_do DO=check \
- "DODIRS=libg++" $(FLAGS_TO_PASS) "CC=${GXX}" "XTRAFLAGS=${XTRAFLAGS}"
+ @rootme=`pwd` ; export rootme ; $(MAKE) $(FLAGS_TO_PASS) DO=check "DODIRS=$(SUBDIRS)" subdir_do
clean-info:
- @$(MAKE) $(FLAGS_TO_PASS) subdir_do DO=clean-info "DODIRS=$(SUBDIRS)"
- rm -f *.info*
-
-cfg-paper.info: cfg-paper.texi
- rootme=`pwd` ; export rootme ; $(MAKEINFO) -o cfg-paper.info $(srcdir)/cfg-paper.texi
-
-configure.info: configure.texi
- rootme=`pwd` ; export rootme ; $(MAKEINFO) -o configure.info $(srcdir)/configure.texi
-
-standards.info: standards.texi
- rootme=`pwd` ; export rootme ; $(MAKEINFO) -o standards.info $(srcdir)/standards.texi
-
+ @rootme='pwd' ; export rootme ; $(MAKE) $(FLAGS_TO_PASS) DO=clean-info "DODIRS=$(SUBDIRS)" subdir_do
+
install-info: install-info-dirs force
- [ -d $(infodir) ] || mkdir $(infodir)
- @$(MAKE) $(FLAGS_TO_PASS) subdir_do DO=install-info "DODIRS=$(SUBDIRS)"
- $(INSTALL_DATA) cfg-paper.info $(infodir)/cfg-paper.info
- $(INSTALL_DATA) configure.info $(infodir)/configure.info
- $(INSTALL_DATA) standards.info $(infodir)/standards.info
- @$(MAKE) $(FLAGS_TO_PASS) dir.info install-dir.info
+ -parent=`echo $(infodir)|sed -e 's@/[^/]*$$@@'`; \
+ if [ -d $$parent ] ; then true ; else mkdir $$parent ; fi
+ -if [ -d $(infodir) ] ; then true ; else mkdir $(infodir) ; fi
+ @rootme='pwd' ; export rootme ; $(MAKE) $(FLAGS_TO_PASS) DO=install-info "DODIRS=$(SUBDIRS)" subdir_do
+ @rootme='pwd' ; export rootme ; $(MAKE) $(FLAGS_TO_PASS) dir.info install-dir.info
install-dir.info:
+ -parent=`echo $(infodir)|sed -e 's@/[^/]*$$@@'`; \
+ if [ -d $$parent ] ; then true ; else mkdir $$parent ; fi
+ -if [ -d $(infodir) ] ; then true ; else mkdir $(infodir) ; fi
$(INSTALL_DATA) dir.info $(infodir)/dir.info
all.normal: all-autoconf all-libiberty all-mmalloc all-texinfo \
- all-bison all-byacc all-flex all-bfd all-ld all-gas all-gcc \
- all-binutils all-libg++ all-readline all-gdb \
+ all-byacc all-flex all-opcodes all-bfd all-ld all-gas all-tgas \
+ all-gcc all-binutils all-libg++ all-readline all-gdb \
all-make all-rcs all-cvs all-diff all-grep \
- all-patch all-emacs all-ispell \
+ all-patch all-emacs all-ispell all-etc \
all-newlib all-gprof all-send_pr all-libm
-all.cross: all-libiberty all-mmalloc all-gas all-byacc all-ld \
- all-bfd all-libgcc all-readline all-gdb all-newlib
-# $(MAKE) $(FLAGS_TO_PASS) subdir_do DO=all "DODIRS=$(SUBDIRS) $(OTHERS)"
+all.cross: all-libiberty all-mmalloc all-gas all-byacc all-flex all-ld \
+ all-opcodes all-bfd all-readline all-gdb all-binutils all-gcc \
+ all-newlib
clean: clean-autoconf clean-libiberty clean-mmalloc clean-texinfo \
clean-bfd clean-newlib clean-binutils clean-flex \
- clean-bison clean-byacc clean-ld clean-gas \
- clean-gcc clean-libgcc clean-readline clean-glob clean-gdb \
+ clean-byacc clean-ld clean-gas clean-etc clean-opcodes \
+ clean-gcc clean-readline clean-glob clean-gdb \
clean-make clean-diff clean-grep clean-rcs \
clean-cvs clean-patch clean-emacs clean-ispell \
clean-libg++ clean-gprof clean-send_pr clean-libm
clean-stamps:
-rm -f all-*
-install: $(INSTALL_TARGET) $(srcdir)/configure.man
- $(INSTALL_DATA) $(srcdir)/configure.man $(man1dir)/configure.1
+install: $(INSTALL_TARGET)
+ -parent=`echo $(man1dir)|sed -e 's@/[^/]*$$@@'`; \
+ if [ -d $$parent ] ; then true ; else mkdir $$parent ; fi
+ -if [ -d $(man1dir) ] ; then true ; else mkdir $(man1dir) ; fi
install.all: install-no-fixedincludes
@if [ -f ./gcc/Makefile ] ; then \
true ; \
fi
-install-no-fixedincludes: install-dirs gcc-no-fixedincludes
- install-autoconf install-texinfo install-mmalloc \
- install-libiberty install-bfd install-binutils install-bison \
- install-byacc install-flex install-ld install-gas \
- install-gprof install-libgcc install-readline install-glob \
- install-gdb install-make install-diff install-cvs \
- install-patch install-emacs install-ispell install-libg++ \
- install-newlib install-send_pr install-libm
-
+install-no-fixedincludes: install-dirs gcc-no-fixedincludes \
+ install-autoconf \
+ install-bfd \
+ install-binutils \
+ install-opcodes \
+ install-byacc \
+ install-cvs \
+ install-diff \
+ install-emacs \
+ install-etc \
+ install-flex \
+ install-gas \
+ install-gdb \
+ install-glob \
+ install-gprof \
+ install-grep \
+ install-ispell \
+ install-ld \
+ install-libg++ \
+ install-libiberty \
+ install-libm \
+ install-make \
+ install-mmalloc \
+ install-newlib \
+ install-patch \
+ install-rcs \
+ install-readline \
+ install-send_pr \
+ install-texinfo
+
gcc-no-fixedincludes:
@if [ -f ./gcc/Makefile ] ; then \
rootme=`pwd` ; export rootme ; \
fi
install.cross: install-dirs install-libiberty install-mmalloc \
- install-binutils install-bison install-byacc install-flex \
- install-ld install-gas install-libgcc install-readline \
- install-glob install-gdb install-mmalloc install-gprof \
- install-newlib install-gcc
+ 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
### autoconf
all-autoconf: force
@if [ -f ./autoconf/Makefile ] ; then \
rootme=`pwd` ; export rootme ; \
- (cd ./autoconf; \
- $(MAKE) $(FLAGS_TO_PASS) all) ; \
+ (cd ./autoconf; $(MAKE) $(FLAGS_TO_PASS) all) ; \
else \
true ; \
fi
clean-autoconf: force
@if [ -f ./autoconf/Makefile ] ; then \
rootme=`pwd` ; export rootme ; \
- (cd ./autoconf; \
- $(MAKE) $(FLAGS_TO_PASS) clean) ; \
+ (cd ./autoconf; $(MAKE) $(FLAGS_TO_PASS) clean) ; \
else \
true ; \
fi
install-autoconf: force
@if [ -f ./autoconf/Makefile ] ; then \
rootme=`pwd` ; export rootme ; \
- (cd ./autoconf; \
- $(MAKE) $(FLAGS_TO_PASS) install) ; \
+ (cd ./autoconf; $(MAKE) $(FLAGS_TO_PASS) install) ; \
+ else \
+ true ; \
+ fi
+
+### etc
+all-etc: force
+ @if [ -f ./etc/Makefile ] ; then \
+ rootme=`pwd` ; export rootme ; \
+ (cd ./etc; $(MAKE) $(FLAGS_TO_PASS) all) ; \
+ else \
+ true ; \
+ fi
+
+clean-etc: force
+ @if [ -f ./etc/Makefile ] ; then \
+ rootme=`pwd` ; export rootme ; \
+ (cd ./etc; $(MAKE) $(FLAGS_TO_PASS) clean) ; \
+ else \
+ true ; \
+ fi
+
+install-etc: force
+ @if [ -f ./etc/Makefile ] ; then \
+ rootme=`pwd` ; export rootme ; \
+ (cd ./etc; $(MAKE) $(FLAGS_TO_PASS) install) ; \
else \
true ; \
fi
### texinfo
all-texinfo: all-libiberty
@if [ -f ./texinfo/Makefile ] ; then \
- rootme=`pwd` ; export rootme ; \
rootme=`pwd` ; export rootme ; \
(cd ./texinfo; \
$(MAKE) $(FLAGS_TO_PASS) all) ; \
true ; \
fi
+
+### opcodes
+all-opcodes: force
+ @if [ -f ./opcodes/Makefile ] ; then \
+ rootme=`pwd` ; export rootme ; \
+ (cd ./opcodes; \
+ $(MAKE) $(FLAGS_TO_PASS) all) ; \
+ else \
+ true ; \
+ fi
+
+clean-opcodes: force
+ @if [ -f ./opcodes/Makefile ] ; then \
+ rootme=`pwd` ; export rootme ; \
+ (cd ./opcodes; \
+ $(MAKE) $(FLAGS_TO_PASS) clean) ; \
+ else \
+ true ; \
+ fi
+
+install-opcodes: force
+ @if [ -f ./opcodes/Makefile ] ; then \
+ rootme=`pwd` ; export rootme ; \
+ (cd ./opcodes; \
+ $(MAKE) $(FLAGS_TO_PASS) install) ; \
+ else \
+ true ; \
+ fi
+
### binutils
-all-binutils: all-libiberty all-bfd all-flex
+all-binutils: all-opcodes all-libiberty all-bfd all-flex
@if [ -f ./binutils/Makefile ] ; then \
rootme=`pwd` ; export rootme ; \
(cd ./binutils; \
fi
### newlib
-all-newlib: force
+all-newlib: all-binutils all-ld all-gas all-gcc
@if [ -f ./newlib/Makefile ] ; then \
rootme=`pwd` ; export rootme ; \
+ srcroot=`cd $(srcdir); pwd` ; export srcroot ; \
(cd ./newlib; \
- $(MAKE) $(FLAGS_TO_PASS) all) ; \
+ $(MAKE) $(TARGET_FLAGS_TO_PASS) all) ; \
else \
true ; \
fi
clean-newlib: force
@if [ -f ./newlib/Makefile ] ; then \
rootme=`pwd` ; export rootme ; \
+ srcroot=`cd $(srcdir); pwd` ; export srcroot ; \
(cd ./newlib; \
- $(MAKE) $(FLAGS_TO_PASS) clean) ; \
+ $(MAKE) $(TARGET_FLAGS_TO_PASS) clean) ; \
else \
true ; \
fi
install-newlib: force
@if [ -f ./newlib/Makefile ] ; then \
rootme=`pwd` ; export rootme ; \
+ srcroot=`cd $(srcdir); pwd` ; export srcroot ; \
(cd ./newlib; \
- $(MAKE) $(FLAGS_TO_PASS) install) ; \
+ $(MAKE) $(TARGET_FLAGS_TO_PASS) install) ; \
else \
true ; \
fi
### gprof
all-gprof: all-libiberty all-bfd
@if [ -f ./gprof/Makefile ] ; then \
- (cd gprof; $(MAKE) $(FLAGS_TO_PASS) all) ; \
+ rootme=`pwd` ; export rootme ; \
+ (cd ./gprof; \
+ $(MAKE) $(FLAGS_TO_PASS) all) ; \
else \
true ; \
fi
clean-gprof: force
@if [ -f ./gprof/Makefile ] ; then \
- (cd gprof; $(MAKE) $(FLAGS_TO_PASS) clean) ; \
+ rootme=`pwd` ; export rootme ; \
+ (cd ./gprof; \
+ $(MAKE) $(FLAGS_TO_PASS) clean) ; \
else \
true ; \
fi
install-gprof: force
@if [ -f ./gprof/Makefile ] ; then \
- (cd gprof; $(MAKE) $(FLAGS_TO_PASS) install) ; \
+ rootme=`pwd` ; export rootme ; \
+ (cd ./gprof; \
+ $(MAKE) $(FLAGS_TO_PASS) install) ; \
else \
true ; \
fi
true ; \
fi
-### bison
-all-bison: all-libiberty
- @if [ -f ./bison/Makefile ] ; then \
- rootme=`pwd` ; export rootme ; \
- (cd ./bison; \
- $(MAKE) $(FLAGS_TO_PASS) all) ; \
- else \
- true ; \
- fi
-
-clean-bison: force
- @if [ -f ./bison/Makefile ] ; then \
- rootme=`pwd` ; export rootme ; \
- (cd ./bison; \
- $(MAKE) $(FLAGS_TO_PASS) clean) ; \
- else \
- true ; \
- fi
-
-install-bison: force
- @if [ -f ./bison/Makefile ] ; then \
- rootme=`pwd` ; export rootme ; \
- (cd ./bison; \
- $(MAKE) $(FLAGS_TO_PASS) install) ; \
- else \
- true ; \
- fi
-
### flex
all-flex: all-libiberty
@if [ -f ./flex/Makefile ] ; then \
fi
### gas
-all-gas: all-libiberty all-bfd
+all-gas: all-libiberty all-opcodes all-bfd
@if [ -f ./gas/Makefile ] ; then \
rootme=`pwd` ; export rootme ; \
(cd ./gas; \
true ; \
fi
+### gas
+all-tgas: all-libiberty all-bfd
+ @if [ -f ./tgas/Makefile ] ; then \
+ rootme=`pwd` ; export rootme ; \
+ (cd ./tgas; \
+ $(MAKE) $(FLAGS_TO_PASS) all) ; \
+ else \
+ true ; \
+ fi
+
+
### ld
all-ld: all-libiberty all-bfd all-byacc all-flex
@if [ -f ./ld/Makefile ] ; then \
true ; \
fi
-### libgcc (and libgcc1)
-all-libgcc1: all-gas all-binutils
- @if [ -f ./libgcc/Makefile ] ; then \
- rootme=`pwd` ; export rootme ; \
- (cd ./libgcc; \
- $(MAKE) $(FLAGS_TO_PASS) libgcc1.a) ; \
- else \
- true ; \
- fi
-
-clean-libgcc1: force
- @if [ -f ./libgcc/Makefile ] ; then \
- rootme=`pwd` ; export rootme ; \
- (cd ./libgcc; \
- $(MAKE) $(FLAGS_TO_PASS) clean-libgcc1) ; \
- else \
- true ; \
- fi
-
-install-libgcc1: force
- echo libgcc1 is a component, not an installable target
-
-all-libgcc: all-gas all-gcc all-binutils
- true
- @if [ -f ./libgcc/Makefile ] ; then \
- rootme=`pwd` ; export rootme ; \
- (cd ./libgcc; \
- $(MAKE) $(FLAGS_TO_PASS) all) ; \
- else \
- true ; \
- fi
-
-clean-libgcc: force
- @if [ -f ./libgcc/Makefile ] ; then \
- rootme=`pwd` ; export rootme ; \
- (cd ./libgcc; \
- $(MAKE) $(FLAGS_TO_PASS) clean) ; \
- else \
- true ; \
- fi
-
-install-libgcc: force
- @if [ -f ./libgcc/Makefile ] ; then \
- rootme=`pwd` ; export rootme ; \
- (cd ./libgcc; \
- $(MAKE) $(FLAGS_TO_PASS) install) ; \
- else \
- true ; \
- fi
-
### gdb
-all-gdb: all-bfd all-libiberty all-mmalloc all-readline all-glob all-byacc
+all-gdb: all-bfd all-opcodes all-libiberty all-mmalloc all-readline all-glob all-byacc
@if [ -f ./gdb/Makefile ] ; then \
rootme=`pwd` ; export rootme ; \
(cd ./gdb; \
### libm
all-libm: force
- @if [ -d ./libm ] ; then \
+ @if [ -f ./libm/Makefile ] ; then \
rootme=`pwd` ; export rootme ; \
(cd ./libm; \
$(MAKE) $(FLAGS_TO_PASS) all) ; \
fi
clean-libm: force
- @if [ -d ./libm ] ; then \
+ @if [ -f ./libm/Makefile ] ; then \
rootme=`pwd` ; export rootme ; \
(cd ./libm; \
$(MAKE) $(FLAGS_TO_PASS) clean) ; \
fi
install-libm: force
- @if [ -d ./libm ] ; then \
+ @if [ -f ./libm/Makefile ] ; then \
rootme=`pwd` ; export rootme ; \
(cd ./libm; \
$(MAKE) $(FLAGS_TO_PASS) install) ; \
all-libg++: all-gas all-ld all-gcc
@if [ -f ./libg++/Makefile ] ; then \
rootme=`pwd` ; export rootme ; \
+ srcroot=`cd $(srcdir); pwd` ; export srcroot ; \
(cd ./libg++; \
- $(MAKE) $(FLAGS_TO_PASS) "CC=${GXX}" all) ; \
+ $(MAKE) $(TARGET_FLAGS_TO_PASS) all) ; \
else \
true ; \
fi
clean-libg++: force
@if [ -f ./libg++/Makefile ] ; then \
rootme=`pwd` ; export rootme ; \
+ srcroot=`cd $(srcdir); pwd` ; export srcroot ; \
(cd ./libg++; \
- $(MAKE) $(FLAGS_TO_PASS) "CC=${GXX}" clean) ; \
+ $(MAKE) $(TARGET_FLAGS_TO_PASS) clean) ; \
else \
true ; \
fi
install-libg++: force
@if [ -f ./libg++/Makefile ] ; then \
rootme=`pwd` ; export rootme ; \
+ srcroot=`cd $(srcdir); pwd` ; export srcroot ; \
(cd ./libg++; \
- $(MAKE) $(FLAGS_TO_PASS) "CC=${GXX}" install) ; \
+ $(MAKE) $(TARGET_FLAGS_TO_PASS) install) ; \
else \
true ; \
fi
### other supporting targets
# this is a bad hack.
all.xclib: all.normal
- if [ -d clib ] ; then \
+ if [ -f clib/Makefile ] ; then \
(cd clib ; $(MAKE) $(FLAGS_TO_PASS)) ; \
fi
subdir_do:
@for i in $(DODIRS); do \
- if [ -f ./$$i/localenv ] ; then \
- if (rootme=`pwd` ; export rootme ; cd ./$$i; \
- $(MAKE) $(FLAGS_TO_PASS) $(DO)) ; then true ; \
- else exit 1 ; fi ; \
- else if [ -f ./$$i/Makefile ] ; then \
- if (rootme=`pwd` ; export rootme ; cd ./$$i; \
- $(MAKE) $(FLAGS_TO_PASS) $(DO)) ; then true ; \
- else exit 1 ; fi ; \
- else true ; fi ; \
- fi ; \
+ if [ -f ./$$i/localenv ] || [ -f ./$$i/Makefile ] ; then \
+ case $$i in \
+ libg++ | xiberty | newlib) \
+ if (rootme=`pwd` ; export rootme ; \
+ srcroot=`cd $(srcdir); pwd` ; export srcroot ; \
+ cd ./$$i ; \
+ $(MAKE) $(TARGET_FLAGS_TO_PASS) $(DO)) ; then true ; \
+ else exit 1 ; fi \
+ ;; \
+ *) \
+ if (rootme=`pwd` ; export rootme ; \
+ cd ./$$i ; \
+ $(MAKE) $(FLAGS_TO_PASS) $(DO)) ; then true ; \
+ else exit 1 ; fi \
+ ;; \
+ esac ; \
+ else true ; fi ; \
done
# The "else true" stuff is for Ultrix; the shell returns the exit code
MAKEDIRS= \
$(prefix) \
$(exec_prefix) \
- $(bindir) \
- $(libdir) \
- $(tooldir) \
- $(includedir) \
- $(datadir) \
- $(docdir) \
- $(mandir) \
- $(man1dir) \
- $(man5dir)
+ $(tooldir)
+
+# $(bindir) \
+# $(libdir) \
+# $(includedir) \
+# $(datadir) \
+# $(docdir) \
+# $(mandir) \
+# $(man1dir) \
+# $(man5dir)
# $(man2dir) \
# $(man3dir) \
install-dirs:
for i in $(MAKEDIRS) ; do \
echo Making $$i... ; \
+ parent=`echo $$i|sed -e 's@/[^/]*$$@@'`; \
+ if [ -d $$parent ] ; then true ; else mkdir $$parent ; fi ; \
if [ ! -d $$i ] ; then \
if mkdir $$i ; then \
true ; \
done
MAKEINFODIRS= \
- $(prefix) \
- $(infodir)
+ $(prefix)
+
+# $(infodir)
install-info-dirs:
if [ -d $(prefix) ] ; then true ; else mkdir $(prefix) ; fi
- if [ -d $(datadir) ] ; then true ; else mkdir $(datadir) ; fi
- if [ -d $(infodir) ] ; then true ; else mkdir $(infodir) ; fi
+# if [ -d $(datadir) ] ; then true ; else mkdir $(datadir) ; fi
+# if [ -d $(infodir) ] ; then true ; else mkdir $(infodir) ; fi
dir.info:
- $(srcdir)/texinfo/gen-info-dir $(infodir) > dir.info.new
+ $(srcdir)/texinfo/gen-info-dir $(infodir) $(srcdir)/texinfo/dir.info-template > dir.info.new
mv -f dir.info.new dir.info
etags tags: TAGS