aboutsummaryrefslogtreecommitdiff
path: root/java
diff options
context:
space:
mode:
authorpabs@pablotron.org <pabs@pablotron.org>2014-12-18 15:16:14 -0500
committerpabs@pablotron.org <pabs@pablotron.org>2014-12-18 15:16:14 -0500
commit03992ddc32d9a4f441ba706c3a27eec2f209bc22 (patch)
tree9c4f04cb4eab367965b12f931a28fe3a015bcb17 /java
parent750550e6df3cf8c9013f7fa455218b8d3847e181 (diff)
downloadluigi-template-03992ddc32d9a4f441ba706c3a27eec2f209bc22.tar.bz2
luigi-template-03992ddc32d9a4f441ba706c3a27eec2f209bc22.zip
fix makefile
Diffstat (limited to 'java')
-rw-r--r--java/Makefile6
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)