Skip to content

Commit

Permalink
added options in makefile for building java / .jar
Browse files Browse the repository at this point in the history
  • Loading branch information
Brian Roach committed Jul 24, 2012
1 parent 93eeb57 commit a32d5b7
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions Makefile
Expand Up @@ -4,9 +4,9 @@ all: compile

deps: erl_deps

compile: erl_compile python_compile
compile: erl_compile python_compile java_compile

clean: erl_clean python_clean
clean: erl_clean python_clean java_clean

distclean: clean
rm -rf dist
Expand Down Expand Up @@ -40,3 +40,15 @@ python_clean:
python_release: python_compile
@python2.6 setup.py bdist_egg upload
@python2.7 setup.py bdist_egg upload

# Java specific build steps
java_compile:
@echo "==> Java"
@mvn install

java_clean:
@echo "==> Java"
@mvn clean

java_release: java_compile

0 comments on commit a32d5b7

Please sign in to comment.