ocaml_project/Makefile
2020-12-06 13:58:21 +01:00

20 行
322 B
Makefile

build:
@echo "\n==== COMPILING ====\n"
ocamlbuild MSftest.native
format:
ocp-indent --inplace src/*
edit:
code . -n
demo: build
@echo "\n==== EXECUTING ====\n"
./ftest.native graphs/graph1 1 2 outfile
@echo "\n==== RESULT ==== (content of outfile) \n"
@cat outfile
clean:
-rm -rf _build/
-rm MSftest.native