xref: /openbsd/regress/usr.bin/make/mk8 (revision 404b540a)
1all: nofile goodfile phony
2
3nofile:
4	@echo 1
5
6goodfile:
7	@echo 2
8
9phony:
10	@echo 3
11
12.PHONY: phony
13