CC=gcc
CFLAGS=-g -Wall

.PHONY: default
default: shell1 shell2 read1

shell1: error.o

shell2: error.o

read1: error.o

.PHONY: clean
clean:
	rm -f shell1 shell2 read1 *.o

.PHONY: all
all: clean default
