summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@lukeshu.com>2017-03-12 18:39:22 -0400
committerLuke Shumaker <lukeshu@lukeshu.com>2017-03-12 18:39:22 -0400
commitf3beb3bd00935a64b8ece9b74e46952ce9f637a1 (patch)
tree1a5a9bad9e588492974df15979b95fc91de14f0b /Makefile
parentf4f91f5e5faaae479d4c74a3366a5ce9408c9c64 (diff)
stuff
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 5 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 7813a81..deb4b75 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,7 @@
-classes = $(patsubst %.java,%,$(notdir $(wildcard dslog/*.java)))
+all:
+ javac dslog/*.java
-all: $(foreach c,$(classes),dslog/$c.class)
+clean:
+ rm -f -- dslog/*.class
-%.class: %.java
- javac $<
+.PHONY: all clean