CC=gcc
CFLAGS=-Wall -Wextra -Wpedantic -std=c99 -lm

5: 5.o
	$(CC) -o 5 5.o $(CFLAGS)

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