diff options
author | Ian Lance Taylor <ian@airs.com> | 1999-08-08 17:08:00 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1999-08-08 17:08:00 +0000 |
commit | 46eec08e57c5cb31ecba2f0d4141868b9873b4b1 (patch) | |
tree | ca210d4bdfc592a1d3edb6f2b36195677929f665 | |
parent | 2dcc60be2b8ae13b4fadfe9e2ac5fc7a8ee223f2 (diff) | |
download | gdb-46eec08e57c5cb31ecba2f0d4141868b9873b4b1.zip gdb-46eec08e57c5cb31ecba2f0d4141868b9873b4b1.tar.gz gdb-46eec08e57c5cb31ecba2f0d4141868b9873b4b1.tar.bz2 |
* Makefile.am: Change all uses of itbl-test-ops to itbl-tops to
avoid problems on DOS filesystems.
* Makefile.in: Rebuild.
-rw-r--r-- | gas/ChangeLog | 4 | ||||
-rw-r--r-- | gas/Makefile.am | 6 | ||||
-rw-r--r-- | gas/Makefile.in | 8 |
3 files changed, 11 insertions, 7 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index cc27506..0537124 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,5 +1,9 @@ 1999-08-08 Ian Lance Taylor <ian@zembu.com> + * Makefile.am: Change all uses of itbl-test-ops to itbl-tops to + avoid problems on DOS filesystems. + * Makefile.in: Rebuild. + * doc/as.texinfo (Section): Document 's' flag for COFF version. 1999-08-08 Mumit Khan <khan@xraylith.wisc.edu> diff --git a/gas/Makefile.am b/gas/Makefile.am index 09d5b9d..0a92479 100644 --- a/gas/Makefile.am +++ b/gas/Makefile.am @@ -557,10 +557,10 @@ itbl-parse.c itbl-parse.h: $(srcdir)/itbl-parse.y EXTRA_PROGRAMS = itbl-test itbl_test_SOURCES = itbl-parse.y itbl-lex.l -itbl_test_LDADD = itbl-test-ops.o itbl-test.o $(GASLIBS) @LEXLIB@ +itbl_test_LDADD = itbl-tops.o itbl-test.o $(GASLIBS) @LEXLIB@ -itbl-test-ops.o: $(srcdir)/itbl-ops.c $(srcdir)/itbl-ops.h itbl-parse.h - $(COMPILE) -o itbl-test-ops.o -DSTAND_ALONE -c $(srcdir)/itbl-ops.c +itbl-tops.o: $(srcdir)/itbl-ops.c $(srcdir)/itbl-ops.h itbl-parse.h + $(COMPILE) -o itbl-tops.o -DSTAND_ALONE -c $(srcdir)/itbl-ops.c itbl-test.o: $(srcdir)/testsuite/gas/all/itbl-test.c $(srcdir)/itbl-ops.h $(COMPILE) -c -DSTAND_ALONE $(srcdir)/testsuite/gas/all/itbl-test.c diff --git a/gas/Makefile.in b/gas/Makefile.in index cae70a2..4833c3d 100644 --- a/gas/Makefile.in +++ b/gas/Makefile.in @@ -553,7 +553,7 @@ EXTRA_as_new_SOURCES = config/m68k-parse.y EXTRA_PROGRAMS = itbl-test itbl_test_SOURCES = itbl-parse.y itbl-lex.l -itbl_test_LDADD = itbl-test-ops.o itbl-test.o $(GASLIBS) @LEXLIB@ +itbl_test_LDADD = itbl-tops.o itbl-test.o $(GASLIBS) @LEXLIB@ # CGEN interface. @@ -1610,7 +1610,7 @@ CPPFLAGS = @CPPFLAGS@ LDFLAGS = @LDFLAGS@ LIBS = @LIBS@ itbl_test_OBJECTS = itbl-parse.o itbl-lex.o -itbl_test_DEPENDENCIES = itbl-test-ops.o itbl-test.o \ +itbl_test_DEPENDENCIES = itbl-tops.o itbl-test.o \ ../libiberty/libiberty.a itbl_test_LDFLAGS = as_new_OBJECTS = app.o as.o atof-generic.o bignum-copy.o cond.o \ @@ -2152,8 +2152,8 @@ itbl-ops.o: $(srcdir)/itbl-ops.c $(srcdir)/itbl-ops.h itbl-parse.h itbl-parse.c itbl-parse.h: $(srcdir)/itbl-parse.y $(SHELL) $(YLWRAP) "$(YACC)" $(srcdir)/itbl-parse.y y.tab.c itbl-parse.c y.tab.h itbl-parse.h -- -d -itbl-test-ops.o: $(srcdir)/itbl-ops.c $(srcdir)/itbl-ops.h itbl-parse.h - $(COMPILE) -o itbl-test-ops.o -DSTAND_ALONE -c $(srcdir)/itbl-ops.c +itbl-tops.o: $(srcdir)/itbl-ops.c $(srcdir)/itbl-ops.h itbl-parse.h + $(COMPILE) -o itbl-tops.o -DSTAND_ALONE -c $(srcdir)/itbl-ops.c itbl-test.o: $(srcdir)/testsuite/gas/all/itbl-test.c $(srcdir)/itbl-ops.h $(COMPILE) -c -DSTAND_ALONE $(srcdir)/testsuite/gas/all/itbl-test.c |