CFLAGS= -O9 -funroll-loops -Wall -Werror 

BIN := lmpc2pbm pbm2lmpc

all: $(BIN)

clean:
	rm -f *.c~ *.o $(BIN)

.PHONY: all
.PHONY: clean
