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

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

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