Makefile Generator

Generate a language-appropriate Makefile with the targets you need.

Used as the output binary name for Go, C/C++, and Rust.

Targets
Makefile
# Makefile — Go
# Generated by LILIL DevOps tools

BINARY = app

.PHONY: build test run clean

build:
	go build -o app .

test:
	go test ./... -v

run:
	go run .

clean:
	rm -f app