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

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

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