CC = gcc

all: mandel_seq

mandel_seq: mandel_seq.c
	$(CC) -o mandel_seq mandel_seq.c

clean:
	rm -f mandel_seq out.dat

