diff options
author | Nicholas Duffek <nsd@redhat.com> | 2001-01-04 15:50:48 +0000 |
---|---|---|
committer | Nicholas Duffek <nsd@redhat.com> | 2001-01-04 15:50:48 +0000 |
commit | 5df63b5c5e219dd4947a410a0254c32c4ee2ac73 (patch) | |
tree | c8a0d2f846e3c27cdd71ed680557d9efae4c8db9 /gdb/Makefile.in | |
parent | b237845135afbba339b94b661b6ec2470abe6818 (diff) | |
download | gdb-5df63b5c5e219dd4947a410a0254c32c4ee2ac73.tar.gz |
* Makefile.in (SUBDIR_CLI_OBS): Add cli/cli-utils.o.
(SUBDIR_CLI_SRCS): Add cli/cli-utils.c.
(cli_utils_h): New variable.
(cli/cli-utils.o): New rule.
* cli/cli-utils.c: New file.
* cli/cli-utils.h: New file.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 2e1ca71919a..8ae678c44ac 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -141,9 +141,10 @@ INTL_CFLAGS = -I$(INTL_DIR) -I$(INTL_SRC) # CLI sub directory definitons # SUBDIR_CLI_OBS = \ - cli-decode.o cli-script.o cli-cmds.o cli-setshow.o + cli-decode.o cli-script.o cli-cmds.o cli-setshow.o cli-utils.o SUBDIR_CLI_SRCS = \ - cli/cli-decode.c cli/cli-script.c cli/cli-cmds.c cli/cli-setshow.c + cli/cli-decode.c cli/cli-script.c cli/cli-cmds.c cli/cli-setshow.c \ + cli/cli-utils.c SUBDIR_CLI_DEPS = SUBDIR_CLI_INITS = SUBDIR_CLI_LDFLAGS= @@ -604,6 +605,7 @@ cli_decode_h = $(srcdir)/cli/cli-decode.h cli_cmds_h = $(srcdir)/cli/cli-cmds.h cli_script_h = $(srcdir)/cli/cli-script.h cli_setshow_h = $(srcdir)/cli/cli-setshow.h +cli_utils_h = $(srcdir)/cli/cli-utils.h # Header files that need to have srcdir added. Note that in the cases # where we use a macro like $(gdbcmd_h), things are carefully arranged @@ -2079,6 +2081,9 @@ cli-script.o: $(srcdir)/cli/cli-script.c $(cli_script_h) \ $(defs_h) $(value_h) language.h $(ui_out_h) $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/cli/cli-script.c +cli-utils.o: $(srcdir)/cli/cli-utils.c $(cli_utils_h) $(defs_h) + $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/cli/cli-utils.c + # # MI dependencies # |