diff options
author | Tom Tromey <tromey@redhat.com> | 1998-04-24 22:12:15 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 1998-04-24 22:12:15 +0000 |
commit | 7c9e17390bc334cf474039af3321c90f3fa4325b (patch) | |
tree | ac69dff7b7f066440f7319430e8d09c4d3569edc /sim/w65/Makefile.in | |
parent | ead653821c3bf3b927d2b9d6d771c8ba0b1ab190 (diff) | |
download | gdb-7c9e17390bc334cf474039af3321c90f3fa4325b.zip gdb-7c9e17390bc334cf474039af3321c90f3fa4325b.tar.gz gdb-7c9e17390bc334cf474039af3321c90f3fa4325b.tar.bz2 |
* configure: Regenerated to track ../common/aclocal.m4 changes.
* config.in: Ditto.
* acconfig.h: Removed.
* configure.in: Call CY_GNU_GETTEXT.
* Makefile.in (INTLLIBS): New macro.
(INTLDEPS): Likewise.
($(RUN_PROG)): Depend on INTLDEPS; link against INTLLIBS.
(top_builddir): New macro.
Diffstat (limited to 'sim/w65/Makefile.in')
-rwxr-xr-x | sim/w65/Makefile.in | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/sim/w65/Makefile.in b/sim/w65/Makefile.in index 277543a..8943bd5 100755 --- a/sim/w65/Makefile.in +++ b/sim/w65/Makefile.in @@ -1,5 +1,5 @@ # Makefile for GNU binary-file utilities -# Copyright (C) 1992, 93, 94, 95, 96, 1997 Free Software Foundation, Inc. +# Copyright (C) 1992, 93, 94, 95, 96, 97, 1998 Free Software Foundation, Inc. # This file is part of GNU binutils. @@ -44,6 +44,9 @@ man9dir = $(mandir)/man9 infodir = @infodir@ includedir = @includedir@ +# This can be referenced by the gettext configuration code. +top_builddir = .. + SHELL = /bin/sh INSTALL = @INSTALL@ @@ -100,6 +103,9 @@ LIBIBERTY = ../../libiberty/libiberty.a BFD = ../../bfd/libbfd.a +INTLLIBS = @INTLLIBS@ +INTLDEPS = @INTLDEPS@ + RUNTEST = runtest RUNTESTFLAGS = FLAGS_TO_PASS = \ @@ -114,8 +120,8 @@ FLAGS_TO_PASS = \ all: $(LIBS) $(PROGS) -$(RUN_PROG): $(LIBS) run.o $(BFD) - $(CC) $(CFLAGS) $(LDFLAGS) -o $(RUN_PROG) run.o $(SIM_LIB) $(BFD) $(LIBIBERTY) +$(RUN_PROG): $(LIBS) run.o $(BFD) $(INTLDEPS) + $(CC) $(CFLAGS) $(LDFLAGS) -o $(RUN_PROG) run.o $(SIM_LIB) $(BFD) $(INTLLIBS) $(LIBIBERTY) $(SIM_LIB): case.o interp.o rm -f $(SIM_LIB) |