# Makefile: A standard Makefile for hello.c

all: hello

clean:
	rm -f hello


# vim:ts=3

