CC = gcc
CFLAGS = -Wall -pedantic-errors

all:	photo

photo:	photo.c
	$(CC) $(CFLAGS) -o photo photo.c

clean:
	/bin/rm photo *.o
