Packages moved to Fedora.
[fedora-mingw.git] / ocaml-extlib / Makefile
1 # -*- Makefile -*-
2 # Test programs for extlib
3
4 OCAMLOPTFLAGS = -I +extlib extLib.cmxa
5
6 all: test1 test1.exe
7
8 test1: test1.ml
9         ocamlopt $(OCAMLOPTFLAGS) $< -o $@
10
11 test1.exe: test1.ml
12         i686-pc-mingw32-ocamlopt $(OCAMLOPTFLAGS) $< -o $@
13
14 clean:
15         rm -f test1 *.exe *.cmi *.cmx *.o