File: Makefile

package info (click to toggle)
nproc 0.5.1-2
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 196 kB
  • ctags: 108
  • sloc: ml: 1,656; makefile: 62
file content (29 lines) | stat: -rw-r--r-- 763 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# This Makefile provides only what is needed to build and install nproc.
# Development is done with omake using the OMakefile.

.PHONY: default all opt install uninstall

default: all opt

META: META.in VERSION
	echo "version = \"$$(cat VERSION)\"" > META
	cat META.in >> META

all: META
	ocamlfind ocamlc -c nproc.mli -package lwt.unix
	ocamlfind ocamlc -a -g nproc.ml -o nproc.cma -package lwt.unix
opt: META
	ocamlfind ocamlc -c nproc.mli -package lwt.unix
	ocamlfind ocamlopt -a -g nproc.ml -o nproc.cmxa -package lwt.unix
install:
	ocamlfind install nproc META \
          `find nproc.mli nproc.cmi \
                nproc.cma \
                nproc.cmx nproc.cmxa nproc.a`
uninstall:
	ocamlfind remove nproc

.PHONY: clean
clean:
	omake clean
	rm -f *.omc