CC = gcc
CFLAGS = -Wall -Wextra -g -std=c99 -g -no-pie

intro-fmt: intro-fmt.c
	$(CC) $(CFLAGS) -o intro-fmt intro-fmt.c

clean:
	rm -f intro-fmt
