docs: add project guide for Claude #1
13
Makefile
13
Makefile
@@ -1,6 +1,17 @@
|
|||||||
BINARY_NAME=lambda
|
BINARY_NAME=lambda
|
||||||
|
|
||||||
.PHONY: it run profile explain graph clean
|
.PHONY: help it run profile explain graph clean
|
||||||
|
|
||||||
|
help:
|
||||||
|
@ echo "Available targets:"
|
||||||
|
@ echo " it - Build the lambda binary"
|
||||||
|
@ echo " run - Build and run with sample input (default: simple.txt)"
|
||||||
|
@ echo " profile - Build and run with CPU profiling enabled"
|
||||||
|
@ echo " explain - Run with explanation mode and profiling"
|
||||||
|
@ echo " graph - Generate CPU profile visualization"
|
||||||
|
@ echo " clean - Remove build artifacts"
|
||||||
|
@ echo ""
|
||||||
|
@ echo "Usage: make run TEST=<sample-name>"
|
||||||
|
|
||||||
it:
|
it:
|
||||||
@ go build -o ${BINARY_NAME} ./cmd/lambda
|
@ go build -o ${BINARY_NAME} ./cmd/lambda
|
||||||
|
|||||||
Reference in New Issue
Block a user