mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-03-06 21:07:29 +08:00
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:
parent
684e454474
commit
e6a480d38c
@ -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.
|
||||
|
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user