diff options
author | Manfred Hollstein <manfred@gcc.gnu.org> | 1999-04-01 08:05:46 +0000 |
---|---|---|
committer | Manfred Hollstein <manfred@gcc.gnu.org> | 1999-04-01 08:05:46 +0000 |
commit | 69b2ac84b8080e84daa855d972741fddeca4c182 (patch) | |
tree | 089963a2e247988b1cb3dbde4bc0f20107b0a0bb | |
parent | 454e562f6e7f08c6e26291e42b45e291bd4b68b7 (diff) | |
download | gcc-69b2ac84b8080e84daa855d972741fddeca4c182.zip gcc-69b2ac84b8080e84daa855d972741fddeca4c182.tar.gz gcc-69b2ac84b8080e84daa855d972741fddeca4c182.tar.bz2 |
Makefile.in (cppmain$(exeext)): Depend on intl.o.
h
* Makefile.in (cppmain$(exeext)): Depend on intl.o. Link in intl.o.
From-SVN: r26101
-rw-r--r-- | gcc/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 5073767..be1918f 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -1974,9 +1974,9 @@ libcpp.a: $(LIBCPP_OBJS) $(AR) $(AR_FLAGS) libcpp.a $(LIBCPP_OBJS) if $(RANLIB_TEST) ; then $(RANLIB) libcpp.a ; else true ; fi -cppmain$(exeext): cppmain.o libcpp.a $(LIBDEPS) +cppmain$(exeext): cppmain.o intl.o libcpp.a $(LIBDEPS) $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o cppmain$(exeext) cppmain.o \ - libcpp.a $(LIBS) + intl.o libcpp.a $(LIBS) cppmain.o: cppmain.c $(CONFIG_H) cpplib.h intl.h system.h |