summaryrefslogtreecommitdiff
path: root/sched/Makefile
blob: 35d6ddc5a7d7ce18c2e686f92d05a5de84b2ec04 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
IN=graph.ml main.ml netlist_ast.ml netlist_dumb.ml netlist_lexer.mll netlist.ml netlist_parser.mly netlist_printer.ml scheduler.ml simplify.ml

all: sched

sched: $(IN)
	ocamlbuild main.native
	mv main.native sched

clean:
	rm sched
	rm -rf _build