Skip to content

Commit

Permalink
quieten makefile and default parallelisation to more normal levels
Browse files Browse the repository at this point in the history
  • Loading branch information
avsm committed Sep 2, 2012
1 parent d13088d commit 4d1ba49
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions Makefile
@@ -1,11 +1,11 @@
.PHONY: all clean depend install

all:
./cmd configure
./cmd build
@./cmd configure
@./cmd build

install:
./cmd install
@./cmd install

clean:
./cmd clean
@./cmd clean
4 changes: 2 additions & 2 deletions cmd
@@ -1,7 +1,7 @@
#!/bin/sh -ex
#!/bin/sh -e
# Script that invokes ocamlbuild commands for various targets

njobs=8
njobs=2

cmd=$1
shift
Expand Down

0 comments on commit 4d1ba49

Please sign in to comment.