diff options
author | K. Richard Pixley <rich@cygnus> | 1991-11-05 00:48:42 +0000 |
---|---|---|
committer | K. Richard Pixley <rich@cygnus> | 1991-11-05 00:48:42 +0000 |
commit | 622e4c4c92ef8a3e152509af966e08eee3219f5b (patch) | |
tree | 4dd17d56097cb36dbc4844794893614e7850aaae /gas/Makefile.in | |
parent | 40773f7f3fcb3b2c853975141d32006c3d4bbcbe (diff) | |
download | gdb-622e4c4c92ef8a3e152509af966e08eee3219f5b.zip gdb-622e4c4c92ef8a3e152509af966e08eee3219f5b.tar.gz gdb-622e4c4c92ef8a3e152509af966e08eee3219f5b.tar.bz2 |
get libiberty path right
Diffstat (limited to 'gas/Makefile.in')
-rw-r--r-- | gas/Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gas/Makefile.in b/gas/Makefile.in index c7767ea..f1fc42b 100644 --- a/gas/Makefile.in +++ b/gas/Makefile.in @@ -67,7 +67,7 @@ srcdir = . # NOTE: This directory must exist when you start installation. destdir = /usr/local # Directory in which to put the executable for the command `gcc' -bindir = $(destdir)/H-$(host_alias)/T-$(target_alias)/bin +bindir = $(destdir)/bin # Directory in which to put the directories used by the compiler. libdir = $(destdir)/H-$(host_alias)/T-$(target_alias)/lib # Directory in which the compiler finds executables, libraries, etc. @@ -247,7 +247,7 @@ HOST_LIBDEPS= $(HOST_PREFIX)$(OBSTACK) $(HOST_PREFIX)$(ALLOCA) $(HOST_PREFIX)$(M # How to link with both our special library facilities # and the system's installed libraries. -LIBS = $(LOCAL_LOADLIBES) $(CLIB) $(srcdir)/../libiberty`if [ -d $(srcdir)/libiberty.$(target) ] ; then echo .$(target) ; fi`$(subdir)/libiberty.a +LIBS = $(LOCAL_LOADLIBES) $(CLIB) $(unsubdir)/../libiberty$(subdir)/libiberty.a # Likewise, for use in the tools that must run on this machine # even if we are cross-building GCC. @@ -487,7 +487,7 @@ uninstall: # These exist for maintenance purposes. tags TAGS: force - etags $(REAL_SOURCES) $(REAL_HEADERS) README Makefile config/*.[hc] + etags $(REAL_SOURCES) $(REAL_HEADERS) $(srcdir)/README $(srcdir)/Makefile $(srcdir)/config/*.[hc] bootstrap: $(ALL) force $(MAKE) stage1 |