summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@lukeshu.com>2017-03-12 04:05:42 -0400
committerLuke Shumaker <lukeshu@lukeshu.com>2017-03-12 04:05:42 -0400
commita6db0254bf9bc3f4ed1058c20cf294b66d455be4 (patch)
treedbdd79b3cf4b1fa9ab315b93a8f353d38bcfe92f /Makefile
initial commit
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..7813a81
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,6 @@
+classes = $(patsubst %.java,%,$(notdir $(wildcard dslog/*.java)))
+
+all: $(foreach c,$(classes),dslog/$c.class)
+
+%.class: %.java
+ javac $<