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

14 lines
118 B
Makefile
Raw Normal View History

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