diff options
author | K. Richard Pixley <rich@cygnus> | 1991-12-28 03:15:17 +0000 |
---|---|---|
committer | K. Richard Pixley <rich@cygnus> | 1991-12-28 03:15:17 +0000 |
commit | 079399f6dfa698dee207e1ef8afb9fd047918c80 (patch) | |
tree | 62331591375f6633203a8e5035c4b6e897ab233a /Makefile.in | |
parent | 25113b464774b474d4c233f2acaec23fa367eace (diff) | |
download | gdb-079399f6dfa698dee207e1ef8afb9fd047918c80.zip gdb-079399f6dfa698dee207e1ef8afb9fd047918c80.tar.gz gdb-079399f6dfa698dee207e1ef8afb9fd047918c80.tar.bz2 |
small changes to accomodate other versions of configure
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 72 |
1 files changed, 69 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in index 17b5736..bb44d29 100644 --- a/Makefile.in +++ b/Makefile.in @@ -98,7 +98,7 @@ install-dir.info: # clib prms all.normal: all-texinfo all-bison all-byacc all-flex all-ld all-gnulib \ - all-gdb all-make all-cvs all-emacs all-ispell + all-gdb all-make all-cvs all-emacs all-ispell all-fileutils all.cross: all-bison all-ld all-gnulib all-gdb # $(MAKE) subdir_do DO=all "DODIRS=$(SUBDIRS) $(OTHERS)" @@ -106,7 +106,7 @@ clean: clean-libiberty clean-texinfo clean-bfd clean-binutils \ clean-bison clean-byacc clean-flex clean-ld clean-gas \ clean-gcc clean-gnulib clean-readline clean-glob clean-gdb \ clean-make clean-diff clean-grep clean-rcs clean-gdbm \ - clean-cvs clean-emacs clean-ispell + clean-cvs clean-emacs clean-ispell clean-fileutils rm -rf *.a TEMP errs core *.o *~ \#* TAGS *.E install: $(INSTALL_TARGET) @@ -116,7 +116,7 @@ install.all: install-dirs install-libiberty install-texinfo \ install-binutils install-bison install-byacc install-flex \ install-ld install-gas install-gcc install-gnulib \ install-readline install-glob install-gdb install-make \ - install-cvs install-emacs install-ispell + install-cvs install-emacs install-ispell install-fileutils install.cross: install-dirs install-libiberty install-binutils install-bison \ install-byacc install-ld install-gas install-gnulib \ install-readline install-glob install-gdb @@ -1414,6 +1414,72 @@ install-flex: force true ; \ fi +### fileutils +.PHONY: all-fileutils just-fileutils +all-fileutils: just-fileutils +just-fileutils: force + if [ -d $(unsubdir)/fileutils ] ; then \ + (cd $(unsubdir)/fileutils$(subdir); \ + $(MAKE) \ + "prefix=$(prefix)" \ + "datadir=$(datadir)" \ + "mandir=$(mandir)" \ + "against=$(against)" \ + "AR=$(AR)" \ + "AR_FLAGS=$(AR_FLAGS)" \ + "CC=$(CC)" \ + "RANLIB=$(RANLIB)" \ + "LOADLIBES=$(LOADLIBES)" \ + "LDFLAGS=$(LDFLAGS)" \ + "BISON=$(BISON)" \ + "MAKEINFO=$(MAKEINFO)" \ + all) ; \ + else \ + true ; \ + fi + +clean-fileutils: force + if [ -d $(unsubdir)/fileutils ] ; then \ + (cd $(unsubdir)/fileutils$(subdir); \ + $(MAKE) \ + "prefix=$(prefix)" \ + "datadir=$(datadir)" \ + "mandir=$(mandir)" \ + "against=$(against)" \ + "AR=$(AR)" \ + "AR_FLAGS=$(AR_FLAGS)" \ + "CC=$(CC)" \ + "RANLIB=$(RANLIB)" \ + "LOADLIBES=$(LOADLIBES)" \ + "LDFLAGS=$(LDFLAGS)" \ + "BISON=$(BISON)" \ + "MAKEINFO=$(MAKEINFO)" \ + clean) ; \ + else \ + true ; \ + fi + +install-fileutils: force + if [ -d $(unsubdir)/fileutils ] ; then \ + (cd $(unsubdir)/fileutils$(subdir); \ + $(MAKE) \ + "prefix=$(prefix)" \ + "datadir=$(datadir)" \ + "mandir=$(mandir)" \ + "against=$(against)" \ + "AR=$(AR)" \ + "AR_FLAGS=$(AR_FLAGS)" \ + "CC=$(CC)" \ + "RANLIB=$(RANLIB)" \ + "LOADLIBES=$(LOADLIBES)" \ + "LDFLAGS=$(LDFLAGS)" \ + "BISON=$(BISON)" \ + "MAKEINFO=$(MAKEINFO)" \ + install) ; \ + else \ + true ; \ + fi + ### other supporting targets # this is a bad hack. all.xclib: all.normal |