OBJS = pnm.o rw.o wav.o text.o

mformat.o : $(OBJS)
	ld -s -i -o $(@) $(OBJS)

$(OBJS) : %.o : %.c %.h
	gcc -Wall -c -o $(@) $(<)

