time-to-botec/ocaml/makefile

11 lines
206 B
Makefile
Raw Normal View History

2023-10-14 18:59:56 +00:00
# Compiler
CC=ocamlopt
# ocamlopt: platform-specific, faster
# ocamlc: platform-independent intermediate representation, run with ocamlrun
# Main file
SRC=samples.ml
build: $(SRC)
$(CC) $(SRC)