diff options
author | Tom Tromey <tromey@redhat.com> | 1998-04-24 20:55:51 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 1998-04-24 20:55:51 +0000 |
commit | a2eb9d27511c0e378ac1370ed41cef36caf30047 (patch) | |
tree | ef1c35c131733ced4535c8093940ccb252293509 /sim/ppc/Makefile.in | |
parent | fc4198bbb5aaaf02110cec9b36ed83b1576b2992 (diff) | |
download | gdb-a2eb9d27511c0e378ac1370ed41cef36caf30047.zip gdb-a2eb9d27511c0e378ac1370ed41cef36caf30047.tar.gz gdb-a2eb9d27511c0e378ac1370ed41cef36caf30047.tar.bz2 |
* configure: Regenerated to track ../common/aclocal.m4 changes.
* config.in: Ditto.
* Makefile.in (top_builddir): New macro.
(INTLLIBS): New macro.
(INTLDEPS): Likewise.
(psim): Depend on INTLDEPS; link against INTLLIBS.
* configure.in: Call CY_GNU_GETTEXT.
Diffstat (limited to 'sim/ppc/Makefile.in')
-rw-r--r-- | sim/ppc/Makefile.in | 23 |
1 files changed, 15 insertions, 8 deletions
diff --git a/sim/ppc/Makefile.in b/sim/ppc/Makefile.in index 1751344..46a0acb 100644 --- a/sim/ppc/Makefile.in +++ b/sim/ppc/Makefile.in @@ -1,7 +1,7 @@ # # This file is part of the program psim. # -# Copyright (C) 1994-1996, Andrew Cagney <cagney@highland.com.au> +# Copyright (C) 1994-1997, Andrew Cagney <cagney@highland.com.au> # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -48,13 +48,14 @@ man9dir = $(mandir)/man9 infodir = @infodir@ includedir = @includedir@ +# This can be referenced by the gettext configuration code. +top_builddir = .. + SHELL = /bin/sh -INSTALL = $(srcroot)/install-sh -c +INSTALL = @INSTALL@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_DATA = @INSTALL_DATA@ -INSTALL_XFORM = $(INSTALL) -t='$(program_transform_name)' -INSTALL_XFORM1= $(INSTALL_XFORM) -b=.1 AR = @AR@ AR_FLAGS = rc @@ -150,6 +151,9 @@ INCLUDES = -I. -I$(srcdir) $(LIB_INCLUDES) $(BFD_INCLUDES) $(GDB_INCLUDES) LIBIBERTY_LIB = ../../libiberty/libiberty.a BFD_LIB = ../../bfd/libbfd.a +INTLLIBS = @INTLLIBS@ +INTLDEPS = @INTLDEPS@ + TARGETLIB = libsim.a all: run $(TARGETLIB) $(GDB_OBJ) @@ -316,8 +320,8 @@ PACKAGE_SRC = @sim_pk_src@ PACKAGE_OBJ = @sim_pk_obj@ -psim: $(TARGETLIB) main.o $(LIBIBERTY_LIB) $(BFD_LIB) $(LIBS) - $(CC) $(CFLAGS) $(SIM_CFLAGS) $(LDFLAGS) -o psim main.o $(TARGETLIB) $(BFD_LIB) $(LIBIBERTY_LIB) $(LIBS) +psim: $(TARGETLIB) main.o $(LIBIBERTY_LIB) $(BFD_LIB) $(LIBS) $(INTLDEPS) + $(CC) $(CFLAGS) $(SIM_CFLAGS) $(LDFLAGS) -o psim main.o $(TARGETLIB) $(BFD_LIB) $(INTLLIBS) $(LIBIBERTY_LIB) $(LIBS) run: psim rm -f run @@ -647,6 +651,9 @@ stamp-h: config.in config.status config.status: configure $(SHELL) ./config.status --recheck -install: - $(INSTALL_XFORM) run $(bindir)/run +install: installdirs + n=`echo run | sed '$(program_transform_name)'`; \ + $(INSTALL_PROGRAM) run $(bindir)/$$n +installdirs: + $(SHELL) $(srcdir)/../../mkinstalldirs $(bindir) |