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 | 99d8350df384ccef3cbcf6c9b41af5936e0a035b (patch) | |
tree | 38547bd3f6404a83d7109f95654e270d5f8adc02 /sim/ppc | |
parent | 15a664474a7ec04f8b6aa866715ac9b91bb23ff4 (diff) | |
download | gdb-99d8350df384ccef3cbcf6c9b41af5936e0a035b.tar.gz |
* Makefile.in (INTL_SRC): Define.
(INTL_CFLAGS): Define.
(INTL_DIR): Define.
(STD_CFLAGS): Add INTL_CFLAGS.
Diffstat (limited to 'sim/ppc')
-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 6ced05bc37f..4c2dfef8181 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 67769921567..d69b5c3691c 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 |