All use Starting and Finished, remove deb-prepare prerequisite

[GitHub #207]
This commit is contained in:
Aoran Zeng 2025-06-15 11:15:31 +08:00
parent aab3042c88
commit a2321fdc06
No known key found for this signature in database
GPG Key ID: 8F8BA8488E10ED98

View File

@ -65,8 +65,9 @@ CFLAGS += -static
endif
all:
@echo "Starting: Compile chsrc executable"
@$(CC) src/chsrc-main.c $(CFLAGS) $(_C_Warning_Flags) -o $(Target-Name)
@echo; echo Compile done using \'$(CC)\' $(CFLAGS)
@echo Finished: Compile chsrc executable using \'$(CC)\' $(CFLAGS)
CI: all
@mv $(Target-Name) $(CI_ARTIFACT_NAME)
@ -105,12 +106,14 @@ test-fw:
@./fw
# DEB package targets
deb-prepare: $(Target-Name)
@echo "Preparing for DEB package build..."
deb-prepare:
@echo "Starting: Prepare for building DEB package"
@echo "Finished: Prepare for building DEB package"
deb-build: deb-prepare
@echo "Building DEB package..."
@echo "Starting: Build DEB package"
@debuild -us -uc -b
@echo "Finished: Build DEB package"
deb-clean:
@echo "Starting: Clean DEB build artifacts"