smock: Document how to use it without httpd
[fedora-mingw.git] / ocaml-lablgl / Makefile
1 # Test some binaries which use ocaml-lablgl.  This builds both the
2 # Linux native and Windows binaries, so you can compare them.
3 #
4 # Note that the demos themselves are non-free, written by Jon Harrop
5 # and available from his website here:
6 # http://www.ffconsultancy.com/ocaml/
7
8 all: balls.opt balls.exe
9
10 %.opt: %.ml
11         ocamlfind ocamlopt -I +lablGL unix.cmxa lablglut.cmxa lablgl.cmxa $< -o $@
12
13 %.exe: %.ml
14         OCAMLFIND_CONF=/etc/i686-pc-mingw32-ocamlfind.conf \
15         ocamlfind ocamlopt -I +lablGL unix.cmxa lablglut.cmxa lablgl.cmxa $< -o $@