
build:
	gcc sudoku.c -o sudoku
	chmod +x sudoku
install:
	make build # Compile 
	sh install.sh 

test:
	make build
	bin/sudoku
clean:
	rm -r bin/


