CC=gcc
CFLAGS=-g -Wall

.PHONY: default
default: shell2 read1

shell2: error.o

read1: error.o

.PHONY: clean
clean:
	rm -f shell2 read1 *.o
	rm -rf *.dSYM

.PHONY: all
all: clean default
