progs := flip realpath

all: $(progs)

CFLAGS := -Wall
# Use the implicit rule for the C compiler.

clean:
	rm -f $(progs)
