summaryrefslogtreecommitdiff
path: root/Examples/GIFPlot/Ocaml/simple/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/GIFPlot/Ocaml/simple/Makefile')
-rw-r--r--Examples/GIFPlot/Ocaml/simple/Makefile33
1 files changed, 0 insertions, 33 deletions
diff --git a/Examples/GIFPlot/Ocaml/simple/Makefile b/Examples/GIFPlot/Ocaml/simple/Makefile
deleted file mode 100644
index 50492efc7..000000000
--- a/Examples/GIFPlot/Ocaml/simple/Makefile
+++ /dev/null
@@ -1,33 +0,0 @@
-TOP = ../../..
-SWIG = $(TOP)/../swig
-SWIGOPT = -I../../Include
-SRCS =
-TARGET = gifsimple
-INTERFACE = simple.i
-LIBS = -L../.. -lgifplot -lm
-INCLUDES = -I../../Include
-MLFILE = simple.ml
-IOBJS = simple_wrap.o simple.cmo runme.cmo
-PROGFILE = runme.ml
-
-all:: static
-
-static::
- $(MAKE) -f $(TOP)/Makefile TOP='$(TOP)' \
- IOBJS='$(IOBJS)' PROGFILE='$(PROGFILE)' \
- SRCS='$(SRCS)' SWIG='$(SWIG)' MLFILE='$(MLFILE)' \
- INCLUDES='$(INCLUDES)' LIBS='$(LIBS)' SWIGOPT='$(SWIGOPT)' \
- TARGET='$(TARGET)' INTERFACE='$(INTERFACE)' ocaml_static
-
-dynamic::
- $(MAKE) -f $(TOP)/Makefile TOP='$(TOP)' \
- IOBJS='$(IOBJS)' PROGFILE='$(PROGFILE)' \
- SRCS='$(SRCS)' SWIG='$(SWIG)' MLFILE='$(MLFILE)' \
- INCLUDES='$(INCLUDES)' LIBS='$(LIBS)' SWIGOPT='$(SWIGOPT)' \
- TARGET='$(TARGET)' INTERFACE='$(INTERFACE)' ocaml_static
-
-clean::
- $(MAKE) -f $(TOP)/Makefile MLFILE='$(MLFILE)' ocaml_clean
- rm -f *.gif
-
-check: all