CC = gcc
CFLAGS = -g -Wall
LDFLAGS = -lm

PROGRAMS = tetravex sudoku gera_sudoku 3D-sudoku



all: $(PROGRAMS)

clean:
	rm -f *.o *~ $(PROGRAMS)