Added dynamic targets to example makefiles Added ocaml_dynamic and ocaml_dynamic_cpp targets to Examples/Makefile.in Added OCAMLFIND and OCAMLDLGEN AC_SUBST lines in configure.in Currently, dynamic linking relies on ocamlfind and Gerd Stolpmann's Dl package, as well as some tricky elf linking. git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@4413 626c5289-ae23-0410-ae9c-e8d60b6d4f22
27 lines
669 B
Makefile
27 lines
669 B
Makefile
TOP = ../..
|
|
SWIG = $(TOP)/../swig
|
|
SRCS = example.c
|
|
TARGET = example
|
|
INTERFACE = example.i
|
|
MLFILE = example.ml
|
|
PROGFILE = example_prog.ml
|
|
OBJS = example.o
|
|
|
|
all:: static
|
|
|
|
dynamic::
|
|
$(MAKE) -f $(TOP)/Makefile SRCS='$(SRCS)' SWIG='$(SWIG)' \
|
|
TARGET='$(TARGET)' INTERFACE='$(INTERFACE)' MLFILE='$(MLFILE)' \
|
|
PROGFILE='$(PROGFILE)' OBJS='$(OBJS)' \
|
|
ocaml_dynamic
|
|
|
|
static::
|
|
$(MAKE) -f $(TOP)/Makefile SRCS='$(SRCS)' SWIG='$(SWIG)' \
|
|
TARGET='$(TARGET)' INTERFACE='$(INTERFACE)' MLFILE='$(MLFILE)' \
|
|
PROGFILE='$(PROGFILE)' OBJS='$(OBJS)' \
|
|
ocaml_static
|
|
|
|
clean::
|
|
$(MAKE) -f $(TOP)/Makefile MLFILE='$(MLFILE)' ocaml_clean
|
|
|
|
check: all
|