Added changelog message.
[fedora-mingw.git] / ocaml-curses / Makefile
1 # -*- Makefile -*-
2 # Test programs.
3
4 all: test1 test1.exe
5
6 # XXX The native ocaml-curses package is broken ...
7 test1: test1.ml
8 #       ocamlfind ocamlopt -package curses $< -o $@
9         ocamlopt -I +curses mlcurses.cmxa $< -o $@ -cclib -lncurses
10
11 # XXX ... and the META file for this package also doesn't work either.
12 test1.exe: test1.ml
13 #       OCAMLFIND_CONF=/etc/i686-pc-mingw32-ocamlfind.conf \
14 #       ocamlfind ocamlopt -package curses $< -o $@
15         i686-pc-mingw32-ocamlopt -verbose -I +curses mlcurses.cmxa $< -o $@
16
17 clean:
18         rm -f test1 \
19           *.exe *.cmi *.cmx *.o