16 lines
146 B
Makefile
16 lines
146 B
Makefile
CC?=cc
|
|
|
|
all:
|
|
$(CC) -lm -o sqrt sqrt.c
|
|
|
|
check: all
|
|
./sqrt
|
|
|
|
debug:
|
|
$(CC) -g -lm -o sqrt sqrt.c
|
|
gdb ./sqrt
|
|
|
|
bericht:
|
|
latexmk -pdf bericht.tex;
|
|
|