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

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

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