diff options
author | manfred <manfred@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-04-01 08:05:46 +0000 |
---|---|---|
committer | manfred <manfred@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-04-01 08:05:46 +0000 |
commit | 20ed13da08f5271590b8c20d3e80285e34a89971 (patch) | |
tree | 089963a2e247988b1cb3dbde4bc0f20107b0a0bb /gcc/Makefile.in | |
parent | e86f7f43842d7bcf86d0d9fbcf9e98222e980a30 (diff) | |
download | gcc-20ed13da08f5271590b8c20d3e80285e34a89971.tar.gz |
h
* Makefile.in (cppmain$(exeext)): Depend on intl.o. Link in intl.o.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@26101 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/Makefile.in')
-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 5073767ab07..be1918fc534 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 |