Skip to content

Commit

Permalink
Added Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
myleott committed Nov 26, 2012
1 parent ee3beae commit e8f85a3
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
JAVAC=javac
CLASSPATH=-cp lib/args4j-2.0.6.jar
OPTS=-Xlint:unchecked

src/jgibblda/%.class: src/jgibblda/%.java
$(JAVAC) $(OPTS) $(CLASSPATH) $^

all: src/jgibblda/*.class
mkdir -p bin/jgibblda
mv $^ bin/jgibblda

0 comments on commit e8f85a3

Please sign in to comment.