CC = gcc LDFLAGS = -lm all: expseq expseq: $(CC) $(LDFLAGS) expseq.c -o $@ clean: rm -f expseq expseq.o