From 7048975d6a98b8d76304992371102efb83cc84de Mon Sep 17 00:00:00 2001 From: Kuang-che Wu Date: Wed, 7 Dec 2016 22:47:37 +0800 Subject: 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. --- projects/libtsm/build.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'projects/libtsm') 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 -- cgit v1.2.3