diff options
author | Michael Meissner <gnu@the-meissners.org> | 1998-04-22 18:19:01 +0000 |
---|---|---|
committer | Michael Meissner <gnu@the-meissners.org> | 1998-04-22 18:19:01 +0000 |
commit | 3618a6e972780ed158ab4530fdb1096672af477e (patch) | |
tree | 2903c9178834b59aa55df53fe303b6227df1a44a /sim/common/Make-common.in | |
parent | a46abdd0874a20611ee1d031bb8c3cdab25afd3c (diff) | |
download | gdb-3618a6e972780ed158ab4530fdb1096672af477e.zip gdb-3618a6e972780ed158ab4530fdb1096672af477e.tar.gz gdb-3618a6e972780ed158ab4530fdb1096672af477e.tar.bz2 |
Add intl support
Diffstat (limited to 'sim/common/Make-common.in')
-rw-r--r-- | sim/common/Make-common.in | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/sim/common/Make-common.in b/sim/common/Make-common.in index eac0c7b..813d2d6 100644 --- a/sim/common/Make-common.in +++ b/sim/common/Make-common.in @@ -1,5 +1,5 @@ # Makefile fragment for common parts of all simulators. -# Copyright (C) 1997 Free Software Foundation, Inc. +# Copyright (C) 1997, 1998 Free Software Foundation, Inc. # Contributed by Cygnus Support. # This program is free software; you can redistribute it and/or modify @@ -195,7 +195,8 @@ CONFIG_CFLAGS = \ CSEARCH = -I. -I$(srcdir) -I../common -I$(srccom) \ -I../../include -I$(srcroot)/include \ -I../../bfd -I$(srcroot)/bfd \ - -I../../opcodes -I$(srcroot)/opcodes + -I../../opcodes -I$(srcroot)/opcodes \ + -I../../intl -I$(srcroot)/intl ALL_CFLAGS = $(CONFIG_CFLAGS) $(CSEARCH) $(CFLAGS) BUILD_CFLAGS = -g -O $(CSEARCH) @@ -204,14 +205,17 @@ COMMON_DEP_CFLAGS = $(CONFIG_CFLAGS) $(CSEARCH) LIBIBERTY_LIB = ../../libiberty/libiberty.a BFD_LIB = ../../bfd/libbfd.a OPCODES_LIB = ../../opcodes/libopcodes.a +INTL_LIB = ../../intl/libintl.a CONFIG_LIBS = @LIBS@ -LIBDEPS = $(BFD_LIB) $(OPCODES_LIB) $(LIBIBERTY_LIB) \ +LIBDEPS = $(BFD_LIB) $(OPCODES_LIB) $(INTL_LIB) $(LIBIBERTY_LIB) \ $(SIM_EXTRA_LIBDEPS) -EXTRA_LIBS = $(BFD_LIB) $(OPCODES_LIB) $(LIBIBERTY_LIB) \ +EXTRA_LIBS = $(BFD_LIB) $(OPCODES_LIB) $(INTL_LIB) $(LIBIBERTY_LIB) \ $(CONFIG_LIBS) $(SIM_EXTRA_LIBS) LIB_OBJS = callback.o syscall.o targ-map.o $(SIM_OBJS) +RUNTESTFLAGS = + all: $(SIM_EXTRA_ALL) libsim.a run .gdbinit libsim.a: $(LIB_OBJS) @@ -533,7 +537,7 @@ installdirs: $(SHELL) $(srcdir)/../../mkinstalldirs $(bindir) check: - cd ../testsuite && $(MAKE) check + cd ../testsuite && $(MAKE) check RUNTESTFLAGS="$(RUNTESTFLAGS)" info: clean-info: |