diff options
author | K. Richard Pixley <rich@cygnus> | 1991-11-07 10:16:37 +0000 |
---|---|---|
committer | K. Richard Pixley <rich@cygnus> | 1991-11-07 10:16:37 +0000 |
commit | a297b8cead0e8ca3c940ad7433d466b9c451bbc4 (patch) | |
tree | 549dba2c3a6729630ba1637171576d7114e232ac /Makefile.in | |
parent | 2e410706abd48d96b352ea33784be5e498a49f73 (diff) | |
download | gdb-a297b8cead0e8ca3c940ad7433d466b9c451bbc4.zip gdb-a297b8cead0e8ca3c940ad7433d466b9c451bbc4.tar.gz gdb-a297b8cead0e8ca3c940ad7433d466b9c451bbc4.tar.bz2 |
fix a three-stage typo, build better install-dirs
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/Makefile.in b/Makefile.in index aa8cab9..b7defb71 100644 --- a/Makefile.in +++ b/Makefile.in @@ -16,7 +16,7 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ # -# Last Mod Tue Nov 5 23:28:51 PST 1991, by rich@cygnus.com +# Last Mod Wed Nov 6 20:56:58 PST 1991, by rich@rtl.cygnus.com # # $Id$ @@ -108,7 +108,7 @@ pass: -B`pwd`/$(unsubdir)/gcc$(subdir)/$(stagepass)/ \ -B`pwd`/$(unsubdir)/gas$(subdir)/$(stagepass)/ \ -B`pwd`/$(unsubdir)/ld$(subdir)/$(stagepass)/" \ - "AR=`pwd`/$(unsubdir)/binutil$(subdir)/$(stagepass)/ar" \ + "AR=`pwd`/$(unsubdir)/binutils$(subdir)/$(stagepass)/ar" \ "RANLIB=`pwd`/$(unsubdir)/binutils$(subdir)/$(stagepass)/ranlib" \ "LOADLIBES=`pwd`/$(unsubdir)/gnulib$(subdir)/$(stagepass)/gnulib.a /lib/libc.a" \ "LDFLAGS=-nostdlib /lib/crt0.o \ @@ -141,24 +141,22 @@ clean: rm -rf *.a TEMP errs core *.o *~ \#* TAGS *.E $(MAKE) subdir_do DO=clean "DODIRS=$(SUBDIRS) $(OTHERS)" -install: install-dirs $(INSTALL_FIXED_INCLUDES) +install: install-dirs $(INSTALL_FIXED_INCLUDES) $(INSTALL_HEADERS) $(MAKE) subdir_do DO=install "DODIRS=$(SUBDIRS) $(OTHERS)" # The "else true" stuff is for Ultrix; the shell returns the exit code # of the "if" command, if no commands are run in the "then" or "else" part, # causing Make to quit. -install-dirs: force $(INSTALL_HEADERS) +install-dirs: force - mkdir $(ddestdir) + - mkdir $(ddestdir)/bin - mkdir $(ddestdir)/include - mkdir $(ddestdir)/lib - mkdir $(ddestdir)/lib/emacs - - mkdir $(ddestdir)/bin - - mkdir $(ddestdir)/lib - - mkdir $(ddestdir) - - mkdir $(ddestdir)/bin - - mkdir $(ddestdir)/lib - mkdir $(idestdir) - - mkdir $(idestdir)include + - mkdir $(idestdir)/bin + - mkdir $(idestdir)/lib + - mkdir $(idestdir)/include - mkdir $(idestdir)/doc - mkdir $(idestdir)/man - mkdir $(idestdir)/man/man1 |