diff options
author | pabs@pablotron.org <pabs@pablotron.org> | 2014-12-18 15:16:14 -0500 |
---|---|---|
committer | pabs@pablotron.org <pabs@pablotron.org> | 2014-12-18 15:16:14 -0500 |
commit | 03992ddc32d9a4f441ba706c3a27eec2f209bc22 (patch) | |
tree | 9c4f04cb4eab367965b12f931a28fe3a015bcb17 /java/Makefile | |
parent | 750550e6df3cf8c9013f7fa455218b8d3847e181 (diff) | |
download | luigi-template-03992ddc32d9a4f441ba706c3a27eec2f209bc22.tar.bz2 luigi-template-03992ddc32d9a4f441ba706c3a27eec2f209bc22.zip |
fix makefile
Diffstat (limited to 'java/Makefile')
-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) |