CC=gcc
CFLAGS=-g -Wall

shell1: error.o

.PHONY: clean
clean:
	rm -f shell1 *.o
	rm -rf *.dSYM

.PHONY: all
all: clean shell1
