diff options
Diffstat (limited to 'ocaml_player.make')
-rw-r--r-- | ocaml_player.make | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/ocaml_player.make b/ocaml_player.make new file mode 100644 index 0000000..a7efc80 --- /dev/null +++ b/ocaml_player.make @@ -0,0 +1,11 @@ + +all: player + +player: *.ml lib/*.ml + ocamlbuild $(NAME).native + cp $(NAME).native player + rm $(NAME).native + +clean: + rm -r _build + rm player |