Makefile: Added integration-est target and JAVA_TOOL_OPTIONS to set the correct file encoding

git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@13439 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
Florian Schmaus 2013-02-04 21:36:32 +00:00 committed by flow
parent 4402b8c7db
commit 55893400c7
1 changed files with 6 additions and 1 deletions

View File

@ -1,5 +1,7 @@
.PHONY: all clean test-unit eclipse
export JAVA_TOOL_OPTIONS:='-Dfile.encoding=iso-8859-1'
all: build-smack
# Can not use 'build' as target name, because there is a
@ -10,9 +12,12 @@ build-smack:
clean:
cd build && ant clean
test-unit:
unit-test:
cd build && ant test-unit
integration-test:
cd build && ant test
eclipse: .settings .classpath .project
.settings: