This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

PATCH java/Makefile.in dependency inconsistency


All other .o files depend explicitly on their .c, so this just
straightens up an inconsistency.

As an aside, this was extracted from the "make SUN make work
again for 2.95.1" patch, keeping *just this* part since it is
similar to what was accepted at an earlier attempt.  The other
(earlier rejected) parts introduce a construct identical to what
was in cp/Makefile.in.

gcc/java:
Sat Aug 28 19:24:06 1999  Hans-Peter Nilsson  <hp@axis.se>

	* Makefile.in (xref.o): Depend on xref.c explicitly.

Index: Makefile.in
===================================================================
RCS file: /egcs/carton/cvsfiles/egcs/gcc/java/Makefile.in,v
retrieving revision 1.39
diff -p -c -r1.39 Makefile.in
*** Makefile.in	1999/08/04 13:30:49	1.39
--- Makefile.in	1999/08/29 22:23:33
*************** typeck.o : typeck.c $(CONFIG_H) $(JAVA_T
*** 318,324 ****
    $(srcdir)/../toplev.h $(srcdir)/../system.h
  verify.o : verify.c $(CONFIG_H) $(JAVA_TREE_H) jcf.h javaop.h java-opcodes.h \
    java-except.h $(srcdir)/../toplev.h $(srcdir)/../system.h
! xref.o : xref.h $(CONFIG_H) $(JAVA_TREE_H) $(srcdir)/../toplev.h \
    $(srcdir)/../system.h
  zextract.o : zextract.c $(CONFIG_H) $(srcdir)/../system.h zipfile.h
  
--- 318,324 ----
    $(srcdir)/../toplev.h $(srcdir)/../system.h
  verify.o : verify.c $(CONFIG_H) $(JAVA_TREE_H) jcf.h javaop.h java-opcodes.h \
    java-except.h $(srcdir)/../toplev.h $(srcdir)/../system.h
! xref.o : xref.c xref.h $(CONFIG_H) $(JAVA_TREE_H) $(srcdir)/../toplev.h \
    $(srcdir)/../system.h
  zextract.o : zextract.c $(CONFIG_H) $(srcdir)/../system.h zipfile.h
  
brgds, H-P


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]