Skip to content

Commit 06cbfda

Browse files
build: correct PHONY target name (#117)
1 parent 0b58ac0 commit 06cbfda

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ check-clean-git-history:
1717
# renovate: depName=ghcr.io/developerc286/conventional_commits_linter
1818
CONVENTIONAL_COMMITS_LINTER_VERSION=0.15.0@sha256:b631a3cdcbed28c8938a2a6b63e16ecfd0d7ff71c28e878815adf9183e1fb599
1919

20-
.PHONY: check-clean-git-history
20+
.PHONY: check-conventional-commits-linting
2121
check-conventional-commits-linting:
2222
docker run $(DOCKER_RUN_WRITE_OPTS) ghcr.io/developerc286/conventional_commits_linter:$(CONVENTIONAL_COMMITS_LINTER_VERSION) --allow-angular-type-only $(FROM)
2323

@@ -63,8 +63,8 @@ PAYLOAD_SOURCE=output.c
6363
PAYLOAD_OBJECT=output
6464
PAYLOAD_CFLAGS=-m32 -fno-stack-protector -z execstack
6565

66-
payload: $(PAYLOAD_OBJECT)
67-
./$(PAYLOAD_OBJECT)
66+
payload: $(PAYLOAD_OBJECT)
67+
./$(PAYLOAD_OBJECT)
6868

6969
$(PAYLOAD_OBJECT): $(PAYLOAD_SOURCE)
70-
$(CC) -o $(PAYLOAD_OBJECT) $(PAYLOAD_SOURCE) $(PAYLOAD_CFLAGS)
70+
$(CC) -o $(PAYLOAD_OBJECT) $(PAYLOAD_SOURCE) $(PAYLOAD_CFLAGS)

0 commit comments

Comments
 (0)