diff options
author | Ian Lance Taylor <ian@airs.com> | 1998-04-03 18:30:15 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1998-04-03 18:30:15 +0000 |
commit | 03abc2bd652b49325b5a66563c7a5dbdf158fd39 (patch) | |
tree | 7a33ff895bc9acf6054c60b07f48772e4a7036c8 /ld/Makefile.in | |
parent | ed1cc83df244cd183a04a5b390e9e91bc27f1e66 (diff) | |
download | gdb-03abc2bd652b49325b5a66563c7a5dbdf158fd39.zip gdb-03abc2bd652b49325b5a66563c7a5dbdf158fd39.tar.gz gdb-03abc2bd652b49325b5a66563c7a5dbdf158fd39.tar.bz2 |
* configure.in: Put the tdirs in a file and use AC_SUBST_FILE,
rather than in a shell variable and using AC_SUBST.
* Makefile.am (DISTCLEANFILES): Remove ldscripts. Add tdirs.
(distclean-local): New target.
* configure, Makefile.in: Rebuild.
Diffstat (limited to 'ld/Makefile.in')
-rw-r--r-- | ld/Makefile.in | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/ld/Makefile.in b/ld/Makefile.in index 719b22b..e000ac0 100644 --- a/ld/Makefile.in +++ b/ld/Makefile.in @@ -73,7 +73,6 @@ NATIVE_LIB_DIRS = @NATIVE_LIB_DIRS@ NM = @NM@ PACKAGE = @PACKAGE@ RANLIB = @RANLIB@ -TDIRS = @TDIRS@ VERSION = @VERSION@ AUTOMAKE_OPTIONS = cygnus dejagnu @@ -313,7 +312,7 @@ CLEANFILES = dep.sed .dep .dep1 bfdsumm.texi # target is run by the taz target in ../Makefile.in. LDDISTSTUFF = ldgram.c ldgram.h ldlex.c -DISTCLEANFILES = ldscripts +DISTCLEANFILES = tdirs ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 mkinstalldirs = $(SHELL) $(top_srcdir)/../mkinstalldirs CONFIG_HEADER = config.h @@ -704,7 +703,7 @@ clean: clean-hdr clean-noinstPROGRAMS clean-compile clean-libtool \ distclean: distclean-hdr distclean-noinstPROGRAMS distclean-compile \ distclean-libtool distclean-aminfo distclean-tags \ - distclean-generic clean + distclean-generic clean distclean-local -rm -f config.status -rm -f libtool @@ -1201,6 +1200,8 @@ install-data-local: $(INSTALL_DATA) $$f $(scriptdir)/$$f ; \ done diststuff: $(LDDISTSTUFF) info +distclean-local: + rm -rf ldscripts # Targets to rebuild dependencies in this Makefile. # Have to get rid of .dep1 here so that "$?" later includes all of $(CFILES). |