We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07fe597 commit b404061Copy full SHA for b404061
INSTALL
@@ -3,4 +3,6 @@
3
4
The easiest way to install is via opam:
5
6
+ opam repo add xs-opam https://github.com/xapi-project/xs-opam.git
7
opam pin add .
8
+
Makefile
@@ -1,17 +1,16 @@
1
BINDIR ?= /usr/bin
2
SBINDIR ?= /usr/sbin
MANDIR ?= /usr/share/man/man1
-JOBS = $(shell getconf _NPROCESSORS_ONLN)
PROFILE=release
.PHONY: release build install uninstall clean test doc reindent
9
10
release:
11
- dune build @install @networkd/man --profile=$(PROFILE) -j $(JOBS)
+ dune build @install @networkd/man --profile=$(PROFILE)
12
13
build:
14
- dune build @install @networkd/man -j $(JOBS)
+ dune build @install @networkd/man
15
16
install:
17
mkdir -p $(DESTDIR)$(SBINDIR)
0 commit comments