Makefile 471 Bytes
Newer Older
1
.PHONY: all clean dbkg eclipse
2 3 4 5 6 7 8 9 10 11 12

all: build-openfire

# Can not use 'build' as target name, because there is a
# directory called build
build-openfire:
	cd build && ant

clean:
	cd build && ant clean

13
dpkg:
14 15
	cd build && ant installer.debian

16 17 18
plugins:
	cd build && ant plugins

19 20 21 22 23 24 25 26 27 28
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