heron_sqrt/Makefile
2013-12-04 21:32:13 +01:00

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;