CC=cc
DEFINES=
FLAGS=

head-1: head-1.c
	$(CC) -o head-1 head-1.c

head-2: head-2.c
	$(CC) -o head-2 head-2.c

clean:
	rm *.o *~ head-1 head-2