mirror of
https://github.com/vanitasvitae/Smack.git
synced 2025-09-09 00:59:39 +02:00
Add eclipse configuration and Makefile. The eclipse configuration can be activated with the 'eclipse' make target ('make eclipse').
git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@13414 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
parent
d8f11a0b71
commit
054656c771
5 changed files with 363 additions and 0 deletions
25
Makefile
Normal file
25
Makefile
Normal file
|
@ -0,0 +1,25 @@
|
|||
.PHONY: all clean test-unit eclipse
|
||||
|
||||
all: build-smack .settings
|
||||
|
||||
# Can not use 'build' as target name, because there is a
|
||||
# directory called build
|
||||
build-smack:
|
||||
cd build && ant
|
||||
|
||||
clean:
|
||||
cd build && ant clean
|
||||
|
||||
test-unit:
|
||||
cd build && ant test-unit
|
||||
|
||||
eclipse: .settings .classpath .project
|
||||
|
||||
.settings:
|
||||
ln -s build/eclipse/settings .settings
|
||||
|
||||
.classpath:
|
||||
ln -s build/eclipse/classpath .classpath
|
||||
|
||||
.project:
|
||||
ln -s build/eclipse/project .project
|
Loading…
Add table
Add a link
Reference in a new issue