sudoku/makefile

6 lines
129 B
Makefile
Raw Permalink Normal View History

2013-10-18 23:04:41 +02:00
SHELL = /bin/sh
.SUFFIXES:
.SUFFIXES: .c .o
Tris-in-stile-c : main.c sudoku.c sudoku.h
gcc -std=c99 main.c sudoku.c -o "Sudoku"