Skip to content
This repository was archived by the owner on Jul 4, 2025. It is now read-only.

Commit 8b4048c

Browse files
committed
chore: Makefile
1 parent bd24951 commit 8b4048c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

engine/Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,14 @@ build:
3535
ifeq ($(OS),Windows_NT)
3636
@powershell -Command "mkdir -p build; cd build; cmake .. $(CMAKE_EXTRA_FLAGS); cmake --build . --config Release -j4;"
3737
else ifeq ($(shell uname -s),Linux)
38-
@cmake -S ./third-party -B ./build_deps \
39-
make -C build_deps/ -j4 \
38+
@cmake -S ./third-party -B ./build_deps; \
39+
make -C build_deps/ -j4; \
4040
mkdir -p build && cd build; \
4141
cmake .. $(CMAKE_EXTRA_FLAGS); \
4242
make -j4;
4343
else
44-
@cmake -S ./third-party -B ./build_deps \
45-
make -C build_deps/ -j4 \
44+
@cmake -S ./third-party -B ./build_deps; \
45+
make -C build_deps/ -j4; \
4646
mkdir -p build && cd build; \
4747
cmake .. $(CMAKE_EXTRA_FLAGS); \
4848
make -j4;

0 commit comments

Comments
 (0)