summaryrefslogtreecommitdiff
path: root/Examples/C++/Java/Makefile
blob: c41ac5d580aa6c19b4a1b40f0cd3ec4c5917d72d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
TARGETS = java_cpp $(JAR)
JAR = cpptest.jar

include ../common.mk

PACKAGE = cpptest
SWIGOPT    = -o cpptest_wrap.c -package $(PACKAGE) -shadow $(INCLUDE)
SRCS       = 
TARGET     = libcpptest
INTERFACE  = ../interface/cpptest.i
JAR_FILES = cpptestJava.java cpptest.java cpptest_base.java cpptest_empty.java

clean::
	rm -f *_wrap* *.o *~ .~* core *.so *.sl so_locations
	rm -f $(JAR_FILES) $(JAR)
	rm -rf class

PYTHON = jpython

TESTS = $(wildcard ../test_repo/*.py)