diff options
author | Tom Tromey <tromey@redhat.com> | 1997-05-23 19:30:41 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 1997-05-23 19:30:41 +0000 |
commit | 8a51eeafee7b2251ec6b070d1c995486b2c2fe54 (patch) | |
tree | 0036d5a6dc25c45dfad0c946610727e625ea9c7d /gas/Makefile.in | |
parent | 546d7a90d096c1656d15756ab1e16ba56c24e766 (diff) | |
download | gdb-8a51eeafee7b2251ec6b070d1c995486b2c2fe54.zip gdb-8a51eeafee7b2251ec6b070d1c995486b2c2fe54.tar.gz gdb-8a51eeafee7b2251ec6b070d1c995486b2c2fe54.tar.bz2 |
* doc/as.texinfo: Updated for -MD option.
* Makefile.in (CFILES): Added depend.c.
(OBJS): Added depend.o.
* as.h (start_dependencies, register_dependency,
print_dependencies): New declarations.
* depend.c: New file.
* as.c (parse_args): Added -MD option.
(main): Call print_dependencies.
(show_usage): Added help for -MD.
* read.c (s_app_file): Call register_dependency.
(s_include): Call register_dependency when file is found.
(read_a_source_file): Call register_dependency.
Diffstat (limited to 'gas/Makefile.in')
-rw-r--r-- | gas/Makefile.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gas/Makefile.in b/gas/Makefile.in index 3f48a6b..729c2f0 100644 --- a/gas/Makefile.in +++ b/gas/Makefile.in @@ -220,6 +220,7 @@ CFILES = \ atof-generic.c \ bignum-copy.c \ cond.c \ + depend.c \ ecoff.c \ expr.c \ flonum-copy.c \ @@ -400,6 +401,7 @@ OBJS = \ atof-generic.o \ bignum-copy.o \ cond.o \ + depend.o \ expr.o \ flonum-konst.o \ flonum-copy.o \ |