From f422534cd4cf1ba32523c9fc798c207065038ca5 Mon Sep 17 00:00:00 2001 From: Paul Duncan Date: Thu, 6 Sep 2018 08:40:23 -0400 Subject: java: add pom.xml, mv sources to src/main/java/org/pablotron, add src/test, add initial junit tests, update makefile and .gitignore --- java/Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'java/Makefile') diff --git a/java/Makefile b/java/Makefile index fee0c59..2643080 100644 --- a/java/Makefile +++ b/java/Makefile @@ -1,14 +1,14 @@ -SOURCES=$(shell find . -type f -name \*.java) -OUT=luigi-template.jar +SOURCES=$(shell find src/main/java -type f -name \*.java) +OUT=$(shell pwd)/luigi-template.jar all: $(SOURCES) javac $(SOURCES) $(OUT): all - jar cf $(OUT) pablotron + cd src/main/java && jar cf $(OUT) org jar: $(OUT) clean: - find . -type f -name \*.class -exec rm -f '{}' ';' + find src/main/java -type f -name \*.class -exec rm -f '{}' ';' rm -f $(OUT) -- cgit v1.2.3