summaryrefslogtreecommitdiff
path: root/Examples/fortran/array/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/fortran/array/Makefile')
-rw-r--r--Examples/fortran/array/Makefile29
1 files changed, 29 insertions, 0 deletions
diff --git a/Examples/fortran/array/Makefile b/Examples/fortran/array/Makefile
new file mode 100644
index 000000000..3643921d8
--- /dev/null
+++ b/Examples/fortran/array/Makefile
@@ -0,0 +1,29 @@
+TOP = ../..
+SWIG = $(TOP)/../preinst-swig -debug-module 4 > tree.txt
+SRCS = example.c
+TARGET = example
+INTERFACE = example.i
+RUNME = runme.f
+PROXY =
+MEMTOOL = valgrind --leak-check=full
+
+all::
+ $(MAKE) -f $(TOP)/Makefile SRCS='$(SRCS)' SWIG='$(SWIG)' \
+ TARGET='$(TARGET)' INTERFACE='$(INTERFACE)' fortran
+ $(MAKE) -f $(TOP)/Makefile RUNME='$(RUNME)' PROXY='$(PROXY)' \
+ TARGET='$(TARGET)' fortran_compile
+
+run:
+ env LD_LIBRARY_PATH=. ./runme
+
+memchk:
+ $(MAKE) -f $(TOP)/Makefile SRCS='$(SRCS)' SWIG='$(SWIG)' \
+ TARGET='$(TARGET)' INTERFACE='$(INTERFACE)' CFLAGS='-g' fortran
+ $(MAKE) -f $(TOP)/Makefile RUNME='$(RUNME)' PROXY='$(PROXY)' \
+ TARGET='$(TARGET)' CFLAGS='-g' fortran_compile
+ env LD_LIBRARY_PATH=. $(MEMTOOL) ./runme
+
+clean:
+ rm -f *.o *.so *.out *.a *.exe *.dll *.dylib *_wrap* *_proxy* *~ runme
+
+check: all