heron_sqrt/Makefile

16 lines
146 B
Makefile
Raw Normal View History

2013-12-04 20:32:13 +00:00
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;