CC=gcc
CFLAGS=-Wall -Wextra -pedantic -std=c99

cube: cube.h cube-prog.c cube-func.c
	$(CC) $(CFLAGS) -o cube cube-prog.c cube-func.c
