# Simple Makefile for a Go project # Build the application all: build test build: echo "Building..." go build -o main cmd/server/main.go dev: air # Run the application run: go run cmd/server/main.go # Test the application test: echo "Testing..." go test ./... -v # Clean the binary clean: echo "Cleaning..." rm -f main