summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBenjamin Chausse <benjamin@chausse.xyz>2025-02-22 14:06:20 -0500
committerBenjamin Chausse <benjamin@chausse.xyz>2025-02-22 14:06:20 -0500
commit4221780ce53ff7484f6f1958173373dc963e7967 (patch)
treea9295bcc6161b97d33256b069ea3a5c8fe35e5ff /Makefile
parentf36f77472a82d6ebfac153aed6d17f154ae239a6 (diff)
functional scratch dockerfile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 903549d..17962ac 100644
--- a/Makefile
+++ b/Makefile
@@ -21,7 +21,7 @@ clean:
compile:
mkdir -p $(BUILD_DIR) || exit 1
- CGO_ENABLED=1 go run ./internal/manualgen > $(BUILD_DIR)/$(APP).1
+ CGO_ENABLED=1 go run ./internal/autogen > $(BUILD_DIR)/$(APP).1
CGO_ENABLED=1 go build -o $(BUILD_DIR)/$(APP) .
.PHONY: run