You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
711 B
24 lines
711 B
SudokuMatrix: PrintMatrix.o main.o SudokuMatrix.o RandomMatrix.o JudgeMatrix.o SolveMatrix.o
|
|
gcc -o SudokuMatrix main.o PrintMatrix.o SudokuMatrix.o RandomMatrix.o JudgeMatrix.o SolveMatrix.o
|
|
|
|
main.o: main.c SudokuMatrix.o
|
|
gcc -c -o main.o main.c
|
|
|
|
PrintMatrix.o: PrintMatrix.c SudokuMatrix.o
|
|
gcc -c -o PrintMatrix.o PrintMatrix.c
|
|
|
|
RandomMatrix.o: RandomMatrix.c SudokuMatrix.o
|
|
gcc -c -o RandomMatrix.o RandomMatrix.c
|
|
|
|
JudgeMatrix.o: JudgeMatrix.c SudokuMatrix.o
|
|
gcc -c -o JudgeMatrix.o JudgeMatrix.c
|
|
|
|
SolveMatrix.o: SolveMatrix.c SudokuMatrix.o
|
|
gcc -c -o SolveMatrix.o SolveMatrix.c
|
|
|
|
SudokuMatrix.o : SudokuMatrix.h SudokuMatrix.c
|
|
gcc -c -o SudokuMatrix.o SudokuMatrix.c
|
|
|
|
clean:
|
|
rm -rf *.o SudokuMatrix
|