diff options
-rw-r--r-- | libjava/ChangeLog | 4 | ||||
-rw-r--r-- | libjava/Makefile.am | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/libjava/ChangeLog b/libjava/ChangeLog index bef9b8e..83917b0 100644 --- a/libjava/ChangeLog +++ b/libjava/ChangeLog @@ -1,3 +1,7 @@ +2002-02-02 Jason Merrill <jason@redhat.com> + + * Makefile.am (clean-nat): New target. + 2002-02-02 Tom Tromey <tromey@redhat.com> * java/io/natFile.cc: Removed old "FIXME" comments. diff --git a/libjava/Makefile.am b/libjava/Makefile.am index 3d71f33..1edb764 100644 --- a/libjava/Makefile.am +++ b/libjava/Makefile.am @@ -203,6 +203,10 @@ clean-local: ## 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: |