.POSIX:
.PHONY: all clean test
all: test
clean:
	rm -f output
test:
	echo ok
