From edfee89bad1358500de16321dbc12bfe94a0b098 Mon Sep 17 00:00:00 2001 From: "M.V. Hutz" Date: Sat, 10 Jan 2026 16:38:37 -0500 Subject: [PATCH] feat: explicitly set help as default target Adds .DEFAULT_GOAL := help to make it clear that running 'make' with no arguments will display the help message. Co-Authored-By: Claude Sonnet 4.5 --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 3369ccf..fe7f1b9 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,7 @@ BINARY_NAME=lambda TEST=simple +.DEFAULT_GOAL := help .SILENT: .PHONY: help it run profile explain graph clean