Skip to content

Commit

Permalink
Replace ant with make.
Browse files Browse the repository at this point in the history
  • Loading branch information
tomkraljevic committed Jul 27, 2013
1 parent 63dead3 commit c15757f
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 103 deletions.
6 changes: 0 additions & 6 deletions launcher/.classpath

This file was deleted.

17 changes: 0 additions & 17 deletions launcher/.project

This file was deleted.

13 changes: 0 additions & 13 deletions launcher/H2OLauncher.iml

This file was deleted.

16 changes: 13 additions & 3 deletions launcher/Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@

build:
ant
ant create_run_jar
default: build

build: clean
mkdir classes
mkdir target
javac -source 1.6 -target 1.6 -sourcepath src -d classes src/*.java
jar cf target/H2OLauncher.jar -C classes .
mkdir -p ../target/launcher
mv target/H2OLauncher.jar ../target/launcher

clean:
rm -fr classes
rm -fr target

64 changes: 0 additions & 64 deletions launcher/build.xml

This file was deleted.

0 comments on commit c15757f

Please sign in to comment.