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

17 lines
180 B
Makefile
Raw Normal View History

2021-11-29 09:56:59 +00:00
C=clang
2021-12-13 13:33:22 +00:00
all: c c_cgroup ml
2021-11-29 09:56:59 +00:00
clean:
rm -f c ml
c: cp.c
${C} -o c cp.c
2021-12-13 13:33:22 +00:00
c_cgroup: cp_cgroup.c
${C} -o c_cgroup cp_cgroup.c
2021-11-29 09:56:59 +00:00
ml: cp.ml
opam switch default
ocamlopt -o ml cp.ml