summaryrefslogtreecommitdiff
path: root/Examples/java/typemap
diff options
context:
space:
mode:
authorWilliam S Fulton <wsf@fultondesigns.co.uk>2013-04-12 20:08:49 +0100
committerWilliam S Fulton <wsf@fultondesigns.co.uk>2013-04-19 22:28:02 +0100
commit05adcee56f0e6730ab15ca80f010ffe37194c718 (patch)
tree742456175161512a6a63361b9622eb6625142d02 /Examples/java/typemap
parent635a90c91c4eea575b47c6453ccbd501e935cdf6 (diff)
downloadswig-05adcee56f0e6730ab15ca80f010ffe37194c718.tar.gz
Run java examples during 'make check-examples'
Diffstat (limited to 'Examples/java/typemap')
-rw-r--r--Examples/java/typemap/Makefile9
1 files changed, 4 insertions, 5 deletions
diff --git a/Examples/java/typemap/Makefile b/Examples/java/typemap/Makefile
index 92afbd4d0..39e8f6d7f 100644
--- a/Examples/java/typemap/Makefile
+++ b/Examples/java/typemap/Makefile
@@ -5,14 +5,13 @@ TARGET = example
INTERFACE = example.i
SWIGOPT =
-all:: java
+check: build
+ $(MAKE) -f $(TOP)/Makefile java_run
-java::
+build:
$(MAKE) -f $(TOP)/Makefile SRCS='$(SRCS)' SWIG='$(SWIG)' \
SWIGOPT='$(SWIGOPT)' TARGET='$(TARGET)' INTERFACE='$(INTERFACE)' java
javac *.java
-clean::
+clean:
$(MAKE) -f $(TOP)/Makefile java_clean
-
-check: all