This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
PATCH to libjava/Makefile.am
- From: Jason Merrill <jason at redhat dot com>
- To: java-patches at gcc dot gnu dot org
- Cc: Jason Merrill <jason at redhat dot com>
- Date: Fri, 01 Feb 2002 19:43:22 +0000
- Subject: 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: