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

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

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