File tree 1 file changed +3
-3
lines changed 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -58,17 +58,17 @@ clean:
58
58
debug :
59
59
mkdir -p build/debug && \
60
60
cmake $(GENERATOR ) $(BUILD_FLAGS ) -DCMAKE_BUILD_TYPE=Debug -S ./duckdb/ -B build/debug && \
61
- cmake --build build/debug --config Debug
61
+ cmake --build build/debug --config Debug -j
62
62
63
63
reldebug :
64
64
mkdir -p build/reldebug && \
65
65
cmake $(GENERATOR ) $(BUILD_FLAGS ) -DCMAKE_BUILD_TYPE=RelWithDebInfo -S ./duckdb/ -B build/reldebug && \
66
- cmake --build build/reldebug --config RelWithDebInfo
66
+ cmake --build build/reldebug --config RelWithDebInfo -j
67
67
68
68
release :
69
69
mkdir -p build/release && \
70
70
cmake $(GENERATOR ) $(BUILD_FLAGS ) -DCMAKE_BUILD_TYPE=Release -S ./duckdb/ -B build/release && \
71
- cmake --build build/release --config Release
71
+ cmake --build build/release --config Release -j
72
72
73
73
test : test_release
74
74
test_release : release
You can’t perform that action at this time.
0 commit comments