diff options
author | Tom Tromey <tromey@redhat.com> | 1998-04-22 21:56:04 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 1998-04-22 21:56:04 +0000 |
commit | fcfc3c0c2d7fde9f07e9e59f64f5a149bfa61763 (patch) | |
tree | ebc2f3448dc74dbed34d67e922168b7918bafb34 /gdb/Makefile.in | |
parent | 1172d35d0c7904493f9aa9d1ac992eb444da57e1 (diff) | |
download | gdb-fcfc3c0c2d7fde9f07e9e59f64f5a149bfa61763.zip gdb-fcfc3c0c2d7fde9f07e9e59f64f5a149bfa61763.tar.gz gdb-fcfc3c0c2d7fde9f07e9e59f64f5a149bfa61763.tar.bz2 |
* configure: Rebuilt.
* configure.in: Call CY_GNU_GETTEXT.
* Makefile.in (top_builddir): New macro.
(INTL): Define to @INTLLIBS@.
(INTL_DEPS): New macro.
(CDEPS): Reference INTL_DEPS, not INTL.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 49c0d5e..fedc9a1 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -41,6 +41,9 @@ man9dir = $(mandir)/man9 infodir = @infodir@ includedir = @includedir@ +# This can be referenced by `INTLDEPS' as computed by CY_GNU_GETTEXT. +top_builddir = . + SHELL = @SHELL@ EXEEXT = # @EXEEXT@ # This isn't getting substituted in correctly :-( @@ -107,7 +110,8 @@ READLINE_CFLAGS = -I$(READLINE_SRC) # Where is the INTL library? Typically in ../intl. INTL_DIR = ../intl -INTL = $(INTL_DIR)/libintl.a +INTL = @INTLLIBS@ +INTL_DEPS = @INTLDEPS@ INTL_SRC = $(srcdir)/$(INTL_DIR) INTL_CFLAGS = -I$(INTL_DIR) -I$(INTL_SRC) @@ -247,7 +251,7 @@ CLIBS = $(SIM) $(BFD) $(READLINE) $(OPCODES) $(INTL) $(LIBIBERTY) \ $(TERMCAP) $(XM_CLIBS) $(TM_CLIBS) $(NAT_CLIBS) @LIBS@ \ $(MMALLOC) $(LIBIBERTY) $(WIN32LIBS) CDEPS = $(XM_CDEPS) $(TM_CDEPS) $(NAT_CDEPS) $(SIM) $(BFD) $(READLINE) \ - $(OPCODES) $(MMALLOC) $(INTL) $(LIBIBERTY) @CONFIG_DEPS@ + $(OPCODES) $(MMALLOC) $(INTL_DEPS) $(LIBIBERTY) @CONFIG_DEPS@ ADD_FILES = $(REGEX) $(XM_ADD_FILES) $(TM_ADD_FILES) $(NAT_ADD_FILES) ADD_DEPS = $(REGEX1) $(XM_ADD_FILES) $(TM_ADD_FILES) $(NAT_ADD_FILES) |