mrtazz/checkmake

View on GitHub
fixtures/missing_phony.make

Summary

Maintainability
Test Coverage
# this is a comment

expanded = "$(simple)"
simple := "foo"

clean:
    rm bar
    rm foo

foo: bar
    touch foo

bar:
    touch bar

all: foo

test:
    @echo lolnah

.PHONY: clean

.DEFAULT_GOAL: all