Avoid long lines in Makefiles and workflows

This commit is contained in:
Ruihan Li
2024-06-21 16:17:58 +08:00
committed by Tate, Hongliang Tian
parent 237c223b1c
commit 284b8c28c8
7 changed files with 40 additions and 18 deletions

View File

@ -34,7 +34,9 @@ TEST_APPS := \
vsock \
# The C head and source files of all the apps, excluding the downloaded mongoose files
C_SOURCES := $(shell find . -type f \( -name "*.c" -or -name "*.h" \) ! -name "mongoose.c" ! -name "mongoose.h")
C_SOURCES := \
$(shell find . -type f \( -name "*.c" -or -name "*.h" \) \
! -name "mongoose.c" ! -name "mongoose.h")
.PHONY: all
all: $(TEST_APPS) scripts