This repository has been archived on 2022-05-27. You can view files and clone it, but cannot push or open issues or pull requests.
ocaml-cgroups2/examples/cp/Makefile
2021-12-13 13:33:22 +00:00

17 lines
180 B
Makefile

C=clang
all: c c_cgroup ml
clean:
rm -f c ml
c: cp.c
${C} -o c cp.c
c_cgroup: cp_cgroup.c
${C} -o c_cgroup cp_cgroup.c
ml: cp.ml
opam switch default
ocamlopt -o ml cp.ml