Makefile.in (JAVA_OBJS): Add memmove.o

* Makefile.in (JAVA_OBJS): Add memmove.o
        (memmove.o): New target & rules.

From-SVN: r22458
This commit is contained in:
Jeffrey A Law 1998-09-17 00:58:52 +00:00 committed by Jeff Law
parent 684e454474
commit e6a480d38c
2 changed files with 11 additions and 1 deletions

View 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.

View 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)
# Compiling object files from source files.