ocaml_project/medium_project/Makefile
2020-11-24 15:00:43 +01:00

21 lines
349 B
Makefile

build:
@echo "\n==== COMPILING ====\n"
#ocamlbuild ftest.native#
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