summaryrefslogtreecommitdiff
path: root/sched/Makefile
blob: 4d36b96bfb14c28ddc62e2b573991bec265d79b7 (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 -libs unix main.native
	mv main.native sched

clean:
	rm sched
	rm -rf _build