diff options
Diffstat (limited to 'java/Makefile')
-rw-r--r-- | java/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/java/Makefile b/java/Makefile index 2b11b3c..fee0c59 100644 --- a/java/Makefile +++ b/java/Makefile @@ -10,5 +10,5 @@ $(OUT): all jar: $(OUT) clean: - find . -type f -name \*.class -exec rm -vf '{}' ';' - rm -vf $(OUT) + find . -type f -name \*.class -exec rm -f '{}' ';' + rm -f $(OUT) |