khigia / ocaml-anneal

Simulated annealing implementation in OCaml

This URL has Read+Write access

ocaml-anneal / Makefile
100644 14 lines (10 sloc) 0.28 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
TARGETS=\
$(patsubst test/%Test.ml,test/%Test.byte,$(wildcard test/*Test.ml))\
$(patsubst ex/%Run.ml,ex/%Run.native,$(wildcard ex/*Run.ml))
 
OCAMLBUILD=ocamlbuild -classic-display -I ex
 
.PHONY: build
build:
$(OCAMLBUILD) $(TARGETS)
 
.PHONY: clean
clean:
$(OCAMLBUILD) -clean