mirror of
https://github.com/asterinas/asterinas.git
synced 2025-06-24 18:03:25 +00:00
Avoid long lines in Makefile
s and workflows
This commit is contained in:
committed by
Tate, Hongliang Tian
parent
237c223b1c
commit
284b8c28c8
@ -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
|
||||
|
Reference in New Issue
Block a user