
all : compile native-lib

compile : 
	ant $@

native-lib :
	cd native;make $@

test : 
	ant $@

jar : 
	ant $@

run : sample-run


sample-compile : 
	ant $@

sample-jar : 
	ant $@

sample-run : compile  sample-compile native-lib
	ant $@

dist : 
	ant $@

bin-dist : 
	ant $@

clean : 
	ant $@
	cd native;make $@

