Makefile + minimal vscode conf

This commit is contained in:
Arthur Bit-Monnot 2019-11-06 14:11:10 +01:00
parent 68c5657a20
commit 6de6406398
3 changed files with 29 additions and 0 deletions

6
.vscode/settings.json vendored Normal file
View file

@ -0,0 +1,6 @@
{
"files.associations": {
"*.ml": "ocaml",
"*.mli": "ocaml"
}
}

16
.vscode/tasks.json vendored Normal file
View file

@ -0,0 +1,16 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "make",
"type": "shell",
"command": "make",
"group": {
"kind": "build",
"isDefault": true
}
}
]
}

7
Makefile Normal file
View file

@ -0,0 +1,7 @@
main:
ocamlbuild ftest.native
clean:
rm -rf _build/
rm ftest.native