Declares all non-file targets as phony to prevent conflicts with files of the same name and improve Make's performance. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
23 lines
538 B
Makefile
23 lines
538 B
Makefile
BINARY_NAME=lambda
|
|
|
|
.PHONY: it run profile explain graph
|
|
|
|
it:
|
|
@ go build -o ${BINARY_NAME} ./cmd/lambda
|
|
|
|
TEST=simple
|
|
|
|
run: it
|
|
@ ./lambda - < ./samples/$(TEST).txt > program.out
|
|
|
|
profile: it
|
|
@ ./lambda -p profile/cpu.prof - < ./samples/$(TEST).txt > program.out
|
|
|
|
explain: it
|
|
@ ./lambda -x -p profile/cpu.prof - < ./samples/$(TEST).txt > program.out
|
|
|
|
graph:
|
|
@ go tool pprof -raw -output=profile/cpu.raw profile/cpu.prof
|
|
@ go tool pprof -svg profile/cpu.prof > profile/cpu.svg
|
|
@ echo "Profile graph saved to 'file://profile/cpu.svg'"
|