diff options
author | Steve Chamberlain <sac@cygnus> | 1994-05-19 16:31:06 +0000 |
---|---|---|
committer | Steve Chamberlain <sac@cygnus> | 1994-05-19 16:31:06 +0000 |
commit | a987271c7e174591aca09d328972e0da8c040a13 (patch) | |
tree | e206c25554d09fa953be882e185032ca427acd9a | |
parent | 2c4bbe475ba1bf8a21a00c65b34faea8f1c79346 (diff) | |
download | gdb-a987271c7e174591aca09d328972e0da8c040a13.zip gdb-a987271c7e174591aca09d328972e0da8c040a13.tar.gz gdb-a987271c7e174591aca09d328972e0da8c040a13.tar.bz2 |
Thu May 19 09:29:12 1994 Steve Chamberlain (sac@cygnus.com)
* Makefile.in (INSTALL_LAST): Change operation so it works
on more flavors of make.
* configure.in (go32): Don't build libg++ or libio.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | Makefile.in | 11 | ||||
-rw-r--r-- | configure.in | 2 |
3 files changed, 16 insertions, 3 deletions
@@ -1,3 +1,9 @@ +Thu May 19 09:29:12 1994 Steve Chamberlain (sac@cygnus.com) + + * Makefile.in (INSTALL_LAST): Change operation so it works + on more flavors of make. + * configure.in (go32): Don't build libg++ or libio. + Fri May 13 13:28:34 1994 Steve Chamberlain (sac@cygnus.com) * Makefile.in (Move HOST_PREFIX_1 and friends up so diff --git a/Makefile.in b/Makefile.in index 060f7e3..9770a4d 100644 --- a/Makefile.in +++ b/Makefile.in @@ -50,6 +50,10 @@ INSTALL_PROGRAM = $(INSTALL) INSTALL_DATA = $(INSTALL) -m 644 INSTALL_XFORM = $(INSTALL) -t='$(program_transform_name)' +INSTALL_LAST_FAKE = install_last_fake +INSTALL_LAST_REAL = install_last_real +INSTALL_LAST = $(INSTALL_LAST_FAKE) + AS = as AR = ar AR_FLAGS = rc @@ -219,6 +223,7 @@ NM_FOR_TARGET = ` \ fi; \ fi` + #### host and target specific makefile fragments come in here. ### @@ -837,8 +842,8 @@ install-gcc: # EXPERIMENTAL STUFF # This rule is used to install the modules which use FLAGS_TO_PASS. # To build a target install-X means to cd to X and make install. -.PHONY: $(INSTALL_LAST) -$(INSTALL_LAST): install-dirs +.PHONY: $(INSTALL_LAST_REAL) +$(INSTALL_LAST_REAL): install-dirs @dir=`echo $@ | sed -e 's/install-//'`; \ if [ -f ./$${dir}/Makefile ] ; then \ r=`pwd`; export r; \ @@ -848,6 +853,8 @@ $(INSTALL_LAST): install-dirs true; \ fi +install_last_fake: + # This is a list of inter-dependencies among modules. all-autoconf: all-m4 diff --git a/configure.in b/configure.in index 5df27bc..452a175 100644 --- a/configure.in +++ b/configure.in @@ -222,7 +222,7 @@ case "${target}" in # add the go32 support tools to the list # but don't build gdb configdirs=`echo go32 ${configdirs}` - noconfigdirs="$noconfigdirs gdb" + noconfigdirs="$noconfigdirs gdb libg++ libio" ;; i[34]86-*-sco*) noconfigdirs="$noconfigdirs gprof" |