CFLAGS	= -g
OBJS	= view.o ghist.o ppm.o

ghist: $(OBJS)
	g++ -lX11 -o ghist $(OBJS)

.PHONY: clean
clean:
	rm -f ghist $(OBJS)
