CC = gcc
CFLAGS = -g

FILES = sq

all: $(FILES)

sq: sq.c
	$(CC) $(CFLAGS) -o sq sq.c

clean:
	rm -f *~ *.o sq
	rm -rf *.dSYM

