aboutsummaryrefslogtreecommitdiff
path: root/gas/Makefile.in
diff options
context:
space:
mode:
authorStan Shebs <shebs@codesourcery.com>1994-01-04 23:35:56 +0000
committerStan Shebs <shebs@codesourcery.com>1994-01-04 23:35:56 +0000
commit5a0517735a47db1eea68bad63ae6930fef766faa (patch)
tree97e145c019aa19a6f50cdbb8f02efc069db3116b /gas/Makefile.in
parent5efb389945c45886ceddd830387b1a26b5ecdf24 (diff)
downloadgdb-5a0517735a47db1eea68bad63ae6930fef766faa.zip
gdb-5a0517735a47db1eea68bad63ae6930fef766faa.tar.gz
gdb-5a0517735a47db1eea68bad63ae6930fef766faa.tar.bz2
Tue Jan 4 15:12:43 1994 Stan Shebs (shebs@andros.cygnus.com)
* Makefile.in (INCLUDES): Add $(srcdir)/.. to places to search. * config/obj-ecoff.c: Include files as "bfd/" instead of "../bfd/". * app.c, flonum.h, hex-value.c (const): Change #if to be more portable.
Diffstat (limited to 'gas/Makefile.in')
-rw-r--r--gas/Makefile.in8
1 files changed, 5 insertions, 3 deletions
diff --git a/gas/Makefile.in b/gas/Makefile.in
index 460ba85..60e575b 100644
--- a/gas/Makefile.in
+++ b/gas/Makefile.in
@@ -124,12 +124,14 @@ FLAGS_TO_PASS = \
"INSTALL_DATA=$(INSTALL_DATA)" \
"INSTALL_PROGRAM=$(INSTALL_PROGRAM)"
+RUNTEST=runtest
CHECKFLAGS= \
"AS_FOR_TARGET=$(AS_FOR_TARGET)" \
"CC_FOR_TARGET=$(CC_FOR_TARGET)" \
"NM_FOR_TARGET=$(NM_FOR_TARGET)" \
"OBJDUMP_FOR_TARGET=$(OBJDUMP_FOR_TARGET)" \
- "RUNTEST_FLAGS=$(RUNTEST_FLAGS)"
+ "RUNTEST_FLAGS=$(RUNTEST_FLAGS)" \
+ "RUNTEST=$(RUNTEST)"
# Lists of files for various purposes.
@@ -251,7 +253,7 @@ LIBS = ../opcodes/libopcodes.a $(BFDLIB) $(LOCAL_LOADLIBES) \
# Both . and srcdir are used, in that order,
# so that tm.h and config.h will be found in the compilation
# subdirectory rather than in the source directory.
-INCLUDES = -I. -I$(srcdir) -I../bfd -I$(srcdir)/config -I$(srcdir)/../include
+INCLUDES = -I. -I$(srcdir) -I../bfd -I$(srcdir)/config -I$(srcdir)/../include -I$(srcdir)/..
SUBDIR_INCLUDES = -I.. -I$(srcdir) -I$(srcdir)/config
# Always use -I$(srcdir)/config when compiling.
@@ -398,7 +400,7 @@ $(srcdir)/as.info: $(srcdir)/doc/as.texinfo
clean-here:
-rm -f $(STAGESTUFF) core
-clean:
+clean: clean-here
@cd doc ; $(MAKE) $(FLAGS_TO_PASS) clean
@if [ -d testsuite ] ; then \
cd testsuite ; $(MAKE) $(FLAGS_TO_PASS) clean ; \