X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;ds=sidebyside;f=ocaml-extlib%2FMakefile;fp=ocaml-extlib%2FMakefile;h=7b2b3993d6f394e280a10da33066e2de9f7039fa;hb=6294bf2fe7e48748379a845d26fa86c6abb5bc1b;hp=0000000000000000000000000000000000000000;hpb=21c601eba0d927c24ad2d746c7105b7f6d44859c;p=fedora-mingw.git diff --git a/ocaml-extlib/Makefile b/ocaml-extlib/Makefile new file mode 100644 index 0000000..7b2b399 --- /dev/null +++ b/ocaml-extlib/Makefile @@ -0,0 +1,15 @@ +# -*- Makefile -*- +# Test programs for extlib + +OCAMLOPTFLAGS = -I +extlib extLib.cmxa + +all: test1 test1.exe + +test1: test1.ml + ocamlopt $(OCAMLOPTFLAGS) $< -o $@ + +test1.exe: test1.ml + i686-pc-mingw32-ocamlopt $(OCAMLOPTFLAGS) $< -o $@ + +clean: + rm -f test1 *.exe *.cmi *.cmx *.o