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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

PATCH to libjava/Makefile.am


I've recently started building libjava as part of my regression testing for
C++ frontend changes.  This goes much faster if I don't compile all the
java code each time, so I've added a target to clean out only the C++
code.

OK to check in?

2002-02-01  Jason Merrill  <jason@redhat.com>

	* Makefile.am (clean-nat): New target.

*** Makefile.am.~1~	Fri Feb  1 19:37:15 2002
--- Makefile.am	Mon Jan 28 16:45:43 2002
*************** clean-local:
*** 203,208 ****
--- 203,212 ----
  ## We just remove every .class file that was created.
  	find . -name '*.class' -print | xargs rm -f
  
+ # Just remove the objects from C++ sources, for testing the C++ compiler.
+ clean-nat:
+ 	rm -f $(nat_files) $(x_nat_files)
+ 
  SUFFIXES = .class .java .h
  
  .class.lo:

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