From 93abebf0951f83e81002fe340d8a53908f6bf9f3 Mon Sep 17 00:00:00 2001 From: DeveloperC Date: Thu, 10 Jul 2025 14:09:45 +0100 Subject: [PATCH] build: correct PHONY target name --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 43f4eb2..a9d77a3 100644 --- a/Makefile +++ b/Makefile @@ -17,7 +17,7 @@ check-clean-git-history: # renovate: depName=ghcr.io/developerc286/conventional_commits_linter CONVENTIONAL_COMMITS_LINTER_VERSION=0.15.0@sha256:b631a3cdcbed28c8938a2a6b63e16ecfd0d7ff71c28e878815adf9183e1fb599 -.PHONY: check-clean-git-history +.PHONY: check-conventional-commits-linting check-conventional-commits-linting: docker run $(DOCKER_RUN_WRITE_OPTS) ghcr.io/developerc286/conventional_commits_linter:$(CONVENTIONAL_COMMITS_LINTER_VERSION) --allow-angular-type-only $(FROM) @@ -63,8 +63,8 @@ PAYLOAD_SOURCE=output.c PAYLOAD_OBJECT=output PAYLOAD_CFLAGS=-m32 -fno-stack-protector -z execstack -payload: $(PAYLOAD_OBJECT) - ./$(PAYLOAD_OBJECT) +payload: $(PAYLOAD_OBJECT) + ./$(PAYLOAD_OBJECT) $(PAYLOAD_OBJECT): $(PAYLOAD_SOURCE) - $(CC) -o $(PAYLOAD_OBJECT) $(PAYLOAD_SOURCE) $(PAYLOAD_CFLAGS) \ No newline at end of file + $(CC) -o $(PAYLOAD_OBJECT) $(PAYLOAD_SOURCE) $(PAYLOAD_CFLAGS)