aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 43e344c..55d5ddd 100644
--- a/Makefile
+++ b/Makefile
@@ -5,11 +5,11 @@
CFLAGS = -Wall -Wextra -Werror -pedantic -std=c99 -D_GNU_SOURCE
-forge: $(filter-out forge,$(wildcard *)) version.go git_hooks_client/*.c git_hooks_client/git_hooks_client
+forge: $(filter-out forge,$(wildcard *)) version.go hookc/*.c hookc/hookc
go mod vendor
go build .
-git_hooks_client/git_hooks_client:
+hookc/hookc:
version.go:
printf 'package main\nconst VERSION="%s"\n' $(shell git describe --tags --always --dirty) > $@