CC=gcc
CFLAGS=-W -Wall -Wextra
all:
	$(CC) $(CFLAGS) sum_unix.c -o sum_unix

clean:
	rm -f sum_unix
