summaryrefslogtreecommitdiff
path: root/src/Makefile
blob: dca72f6ba6661489cf6d25535812fcd930e23aac (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
OCAMLBUILD=ocamlbuild -classic-display \
		-tags annot,debug,thread \
		-libs unix

all: primes.native example.native manager.native poolserver.native poolclient.native

%.native: %.ml kahn_pipe.ml kahn_seq.ml kahn_stdio.ml proto.ml util.ml
	$(OCAMLBUILD) $@


clean:
	$(OCAMLBUILD) -clean