Skip to content

Commit

Permalink
added simple makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
Radvendii committed Mar 2, 2012
1 parent b08b4d2 commit 21428d3
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Makefile
@@ -0,0 +1,11 @@
#The Win Monkeys
all: test

comp:
javac *.java;

test: comp
test $(cat testRes) = $(java test) && echo "passed test.java" || echo "Failed test.java -- CHECK CODE (or possibly update testRes)"

clean:
rm -rf *.class

0 comments on commit 21428d3

Please sign in to comment.