From 85bc61cb7fa8f4b9af78064cb65fbad49a109d5f Mon Sep 17 00:00:00 2001 From: Alex AUVOLAT Date: Thu, 2 Jan 2014 22:30:11 +0100 Subject: Started CPU implementation. --- sched/Makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 sched/Makefile (limited to 'sched') diff --git a/sched/Makefile b/sched/Makefile new file mode 100644 index 0000000..460b639 --- /dev/null +++ b/sched/Makefile @@ -0,0 +1,10 @@ +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: main.native + +main.native: $(IN) + ocamlbuild -libs unix main.native + +clean: + rm -rf _build + rm main.native -- cgit v1.2.3