From 750550e6df3cf8c9013f7fa455218b8d3847e181 Mon Sep 17 00:00:00 2001 From: "pabs@pablotron.org" Date: Thu, 18 Dec 2014 15:10:23 -0500 Subject: add java implementation --- java/Makefile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 java/Makefile (limited to 'java/Makefile') diff --git a/java/Makefile b/java/Makefile new file mode 100644 index 0000000..15005fa --- /dev/null +++ b/java/Makefile @@ -0,0 +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: $(OUT) + +clean: + rm -v $(OUT) $(CLASSES) -- cgit v1.2.3