summaryrefslogtreecommitdiff
path: root/sched/Makefile
diff options
context:
space:
mode:
authorAlex AUVOLAT <alex.auvolat@ens.fr>2014-01-02 22:30:11 +0100
committerAlex AUVOLAT <alex.auvolat@ens.fr>2014-01-02 22:30:11 +0100
commit85bc61cb7fa8f4b9af78064cb65fbad49a109d5f (patch)
tree5116b1c423864f3cde8f1002b7a4dabb62e88fff /sched/Makefile
parent4e1aaf316457f4d4f045fd3ebe500cd70f6bafcc (diff)
downloadSystDigit-Projet-85bc61cb7fa8f4b9af78064cb65fbad49a109d5f.tar.gz
SystDigit-Projet-85bc61cb7fa8f4b9af78064cb65fbad49a109d5f.zip
Started CPU implementation.
Diffstat (limited to 'sched/Makefile')
-rw-r--r--sched/Makefile10
1 files changed, 10 insertions, 0 deletions
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