CC=gcc
CFLAGS=-Wall

all: example

example: example.o

.PHONY: clean
clean:
	rm -f example example.o
