Makefile 207 B

1234567
  1. all: client.opt server.opt
  2. client.opt: client.ml
  3. ocamlfind ocamlopt -linkpkg -package unix -o client.opt client.ml
  4. server.opt: server.ml
  5. ocamlfind ocamlopt -linkpkg -package unix -o server.opt server.ml