Makefile.in (JAVA_OBJS): Add memmove.o
authorJeffrey A Law <law@cygnus.com>
Thu, 17 Sep 1998 00:58:52 +0000 (00:58 +0000)
committerJeff Law <law@gcc.gnu.org>
Thu, 17 Sep 1998 00:58:52 +0000 (18:58 -0600)
        * Makefile.in (JAVA_OBJS): Add memmove.o
        (memmove.o): New target & rules.

From-SVN: r22458

gcc/java/ChangeLog
gcc/java/Makefile.in

index 6dc52efd086ae55bdb05d5758a9a271f2f0ced92..25ad2912dc59d5ead8d8d43a88740664e44d348b 100644 (file)
@@ -1,3 +1,8 @@
+Thu Sep 17 01:57:07 1998  Jeffrey A Law  (law@cygnus.com)
+
+       * Makefile.in (JAVA_OBJS): Add memmove.o
+       (memmove.o): New target & rules.
+
 Mon Sep 14 10:14:47 1998  Jeffrey A Law  (law@cygnus.com)
 
        * Makefile.in: Add many missing dependencies.
index 46f19f80334a5f1d6d4aa5af4badc20fb114a7f8..488eb1c58028248130ea5fc8102ed8e388dc597a 100644 (file)
@@ -180,7 +180,7 @@ INCLUDES = -I. -I.. -I$(srcdir) -I$(srcdir)/.. -I$(srcdir)/../config -I$(srcdir)
 #
 JAVA_OBJS = parse.o class.o decl.o expr.o constants.o lang.o typeck.o \
   except.o verify.o zextract.o jcf-io.o jcf-parse.o mangle.o jcf-write.o \
-  buffer.o
+  buffer.o memmove.o
 
 JAVA_OBJS_LITE = parse-scan.o jv-scan.o
 
@@ -211,6 +211,11 @@ compiler: ../jc1$(exeext) ../jv-scan$(exeext)
 Makefile: $(srcdir)/Makefile.in $(srcdir)/../configure
        cd ..; $(SHELL) config.status
 
+memmove.o: $(srcdir)/../../libiberty/memmove.c
+       rm -f memmove.c
+       $(LN_S) $(srcdir)/../../libiberty/memmove.c memmove.c
+       $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) memmove.c
+
 native: config.status ../jc1$(exeext)
 \f
 # Compiling object files from source files.