aboutsummaryrefslogtreecommitdiffhomepage
path: root/projects/libtsm
diff options
context:
space:
mode:
authorGravatar Kuang-che Wu <kcwu@csie.org>2016-12-07 22:47:37 +0800
committerGravatar Mike Aizatsky <mike.aizatsky@gmail.com>2016-12-07 06:47:37 -0800
commit7048975d6a98b8d76304992371102efb83cc84de (patch)
tree5d1049eee4392d1028f41440c7932506963a382f /projects/libtsm
parent62004e930638603b2ab9cafad35a7eb09d59afe8 (diff)
Fix parallel make command (#144)
'make -j' will make targets parallelly. In other words, "clean" may run after "all" for 'make -j clean all' line.
Diffstat (limited to 'projects/libtsm')
-rwxr-xr-xprojects/libtsm/build.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/projects/libtsm/build.sh b/projects/libtsm/build.sh
index e2260c2e..710d4cd2 100755
--- a/projects/libtsm/build.sh
+++ b/projects/libtsm/build.sh
@@ -17,7 +17,8 @@
# build the library.
./autogen.sh
-make -j$(nproc) clean all
+make -j$(nproc) clean
+make -j$(nproc) all
# build your fuzzer(s)
$CC $CFLAGS -c $SRC/libtsm_fuzzer.c -Isrc/tsm -o $SRC/libtsm_fuzzer.o