diff options
Diffstat (limited to 'java')
-rw-r--r-- | java/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/java/Makefile b/java/Makefile index 15005fa..2b11b3c 100644 --- a/java/Makefile +++ b/java/Makefile @@ -1,14 +1,14 @@ SOURCES=$(shell find . -type f -name \*.java) -CLASSES=$(shell find . -type f -name \*.class) OUT=luigi-template.jar all: $(SOURCES) javac $(SOURCES) $(OUT): all - jar cvf $(OUT) $(CLASSES) + jar cf $(OUT) pablotron jar: $(OUT) clean: - rm -v $(OUT) $(CLASSES) + find . -type f -name \*.class -exec rm -vf '{}' ';' + rm -vf $(OUT) |