diff options
author | Andrew Cagney <cagney@redhat.com> | 2002-06-22 19:10:34 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2002-06-22 19:10:34 +0000 |
commit | bf1024d6980c86296af8283c48b32c6705f574e8 (patch) | |
tree | 648386571fd2fb1548710cb808a2d9b3afa456a9 /sim | |
parent | 4748c6d894d27e43ef9aada3948eecbb5d5fb617 (diff) | |
download | fsf-binutils-gdb-bf1024d6980c86296af8283c48b32c6705f574e8.zip fsf-binutils-gdb-bf1024d6980c86296af8283c48b32c6705f574e8.tar.gz fsf-binutils-gdb-bf1024d6980c86296af8283c48b32c6705f574e8.tar.bz2 |
* Makefile.in (INTL_SRC): Define.
(INTL_CFLAGS): Define.
(INTL_DIR): Define.
(STD_CFLAGS): Add INTL_CFLAGS.
Diffstat (limited to 'sim')
-rw-r--r-- | sim/ppc/ChangeLog | 7 | ||||
-rw-r--r-- | sim/ppc/Makefile.in | 6 |
2 files changed, 12 insertions, 1 deletions
diff --git a/sim/ppc/ChangeLog b/sim/ppc/ChangeLog index 6ced05b..4c2dfef 100644 --- a/sim/ppc/ChangeLog +++ b/sim/ppc/ChangeLog @@ -1,3 +1,10 @@ +2002-06-22 Andrew Cagney <ac131313@redhat.com> + + * Makefile.in (INTL_SRC): Define. + (INTL_CFLAGS): Define. + (INTL_DIR): Define. + (STD_CFLAGS): Add INTL_CFLAGS. + 2002-06-17 Elena Zannoni <ezannoni@redhat.com> * psim.c (psim_options): Don't choke when gdb invokes us with diff --git a/sim/ppc/Makefile.in b/sim/ppc/Makefile.in index 6776992..d69b5c3 100644 --- a/sim/ppc/Makefile.in +++ b/sim/ppc/Makefile.in @@ -113,7 +113,7 @@ CONFIG_CFLAGS = $(BSWAP_CFLAGS) \ $(TERMIO_CFLAGS) \ $(DEVZERO_CFLAGS) -STD_CFLAGS = $(CFLAGS) $(INLINE_CFLAGS) $(CONFIG_CFLAGS) $(WARNING_CFLAGS) $(SIM_CFLAGS) $(HDEFINES) $(TDEFINES) $(INCLUDES) +STD_CFLAGS = $(CFLAGS) $(INLINE_CFLAGS) $(CONFIG_CFLAGS) $(WARNING_CFLAGS) $(SIM_CFLAGS) $(HDEFINES) $(TDEFINES) $(INCLUDES) $(INTL_CFLAGS) NOWARN_CFLAGS = $(CFLAGS) $(INLINE_CFLAGS) $(CONFIG_CFLAGS) $(SIM_CFLAGS) $(HDEFINES) $(TDEFINES) $(INCLUDES) BUILD_CFLAGS = -g -O $(INCLUDES) $(WARNING_CFLAGS) @@ -154,6 +154,10 @@ BFD_LIB = ../../bfd/libbfd.a INTLLIBS = @INTLLIBS@ INTLDEPS = @INTLDEPS@ +INTL_DIR = ../../intl +INTL_SRC = $(srcdir)/$(INTL_DIR) +INTL_CFLAGS = -I$(INTL_DIR) -I$(INTL_SRC) + TARGETLIB = libsim.a |