2012-08-14 01:42:43 +00:00
|
|
|
.PHONY: build_ext tests
|
|
|
|
|
|
|
|
build_ext:
|
2013-01-03 11:57:46 +00:00
|
|
|
javac jnius/src/org/jnius/NativeInvocationHandler.java
|
2013-03-13 17:53:55 +00:00
|
|
|
python setup.py build_ext --inplace -f -g
|
2012-08-14 01:42:43 +00:00
|
|
|
|
2012-08-20 09:17:14 +00:00
|
|
|
html:
|
|
|
|
$(MAKE) -C docs html
|
|
|
|
|
2012-08-14 01:42:43 +00:00
|
|
|
tests: build_ext
|
|
|
|
cd tests && javac org/jnius/HelloWorld.java
|
2012-08-18 10:59:15 +00:00
|
|
|
cd tests && javac org/jnius/BasicsTest.java
|
2012-09-30 20:39:38 +00:00
|
|
|
cd tests && javac org/jnius/MultipleMethods.java
|
2012-10-11 23:10:30 +00:00
|
|
|
cd tests && javac org/jnius/SimpleEnum.java
|
|
|
|
cd tests && javac org/jnius/InterfaceWithPublicEnum.java
|
2012-10-14 21:00:19 +00:00
|
|
|
cd tests && javac org/jnius/ClassArgument.java
|
2014-05-05 07:29:33 +00:00
|
|
|
cd tests && javac org/jnius/MultipleDimensions.java
|
2013-01-02 12:57:08 +00:00
|
|
|
cd tests && env PYTHONPATH=..:$(PYTHONPATH) nosetests-2.7 -v
|