
PROG = dm2ppm
OBJS = main.o raw2ppm.o directory.o
CFLAGS = -g

$(PROG): $(OBJS)
	gcc -o $@ $(OBJS)
	
clean:
	rm -f $(PROG) $(OBJS)
