X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=ocaml%2FMakefile;fp=ocaml%2FMakefile;h=3a2972db42efed9de8557eef0156b62cb697a9a7;hb=ca6e467060deb728164f28de6f636ca1e29ac9ba;hp=723a5265a9f812ed0a6fc1aa3fe9e8f550b2747f;hpb=60a6a789a1e4dbac5373bc44a9aa005b618e3716;p=fedora-mingw.git diff --git a/ocaml/Makefile b/ocaml/Makefile index 723a526..3a2972d 100644 --- a/ocaml/Makefile +++ b/ocaml/Makefile @@ -2,7 +2,8 @@ # Test programs for testing out the cross-compiler. all: test1 test1.exe test2 test2.exe test3 test3.exe test4 test4.exe \ - test_format test_format.exe sudoku sudoku.exe + test_format test_format.exe sudoku sudoku.exe \ + test_buffer test_buffer.exe test_overflow test_overflow.exe test1: test1.ml ocamlopt $< -o $@ @@ -40,5 +41,18 @@ sudoku: sudoku.ml sudoku.exe: sudoku.ml i686-pc-mingw32-ocamlopt $< -o $@ +test_buffer: test_buffer.ml + ocamlopt $< -o $@ + +test_buffer.exe: test_buffer.ml + i686-pc-mingw32-ocamlopt $< -o $@ + +test_overflow: test_overflow.ml + ocamlopt $< -o $@ + +test_overflow.exe: test_overflow.ml + i686-pc-mingw32-ocamlopt $< -o $@ + clean: - rm -f test[1-4] test_format sudoku *.exe *.cmi *.cmx *.o + rm -f test[1-4] test_format sudoku test_buffer test_overflow \ + *.exe *.cmi *.cmx *.o