/trunk/Examples/ocaml/argout_ref/Makefile
# · Makefile · 27 lines · 22 code · 5 blank · 0 comment · 0 complexity · 759169d5f5229bab986ae1d815cac978 MD5 · raw file
- TOP = ../..
- SWIG = $(TOP)/../preinst-swig
- SRCS = example.c
- TARGET = example
- INTERFACE = example.i
- MLFILE = example.ml
- PROGFILE = example_prog.ml
- OBJS = example.o
- all:: static
- static::
- $(MAKE) -f $(TOP)/Makefile SRCS='$(SRCS)' SWIG='$(SWIG)' \
- TARGET='$(TARGET)' INTERFACE='$(INTERFACE)' MLFILE='$(MLFILE)' \
- PROGFILE='$(PROGFILE)' OBJS='$(OBJS)' \
- ocaml_static_cpp
- dynamic::
- $(MAKE) -f $(TOP)/Makefile SRCS='$(SRCS)' SWIG='$(SWIG)' \
- TARGET='$(TARGET)' INTERFACE='$(INTERFACE)' MLFILE='$(MLFILE)' \
- PROGFILE='$(PROGFILE)' OBJS='$(OBJS)' \
- ocaml_dynamic_cpp
- clean::
- $(MAKE) -f $(TOP)/Makefile MLFILE='$(MLFILE)' ocaml_clean
- check: all