Moved source files to src/.

parent 1a2a1f54
......@@ -4,29 +4,31 @@ SPEED_TYPES=float double LD
SUM_TYPES=float double
OPS=ADD DIV MULT SQRT
all: fp speed highlight report.pdf sum kahan pr
highlight: floating_point.tex extra_precision.tex \
speed.tex sum.tex kahan_sum.tex Makefile.tex
s%.tex: s%.c
pygmentize -O style=colorful -o $@ $^
kahan_sum.tex: kahan_sum.c
pygmentize -O style=colorful -o $@ $^
Makefile.tex: Makefile
pygmentize -O style=colorful -o $@ $^
extra_precision.tex: extra_precision.c
pygmentize -O style=colorful -o $@ $^
floating_point.tex: floating_point.c
pygmentize -O style=colorful -o $@ $^
%.pdf: %.tex
pdflatex $^
pdflatex $^
all: fp speed sum kahan pr
#all: fp speed highlight report.pdf sum kahan pr
#
#highlight: floating_point.tex extra_precision.tex \
# speed.tex sum.tex kahan_sum.tex Makefile.tex
#
#s%.tex: s%.c
# pygmentize -O style=colorful -o $@ $^
#
#kahan_sum.tex: kahan_sum.c
# pygmentize -O style=colorful -o $@ $^
#
#Makefile.tex: Makefile
# pygmentize -O style=colorful -o $@ $^
#
#extra_precision.tex: extra_precision.c
# pygmentize -O style=colorful -o $@ $^
#
#floating_point.tex: floating_point.c
# pygmentize -O style=colorful -o $@ $^
#
#%.pdf: %.tex
# pdflatex $^
# pdflatex $^
speed: speed.c
for t in $(SPEED_TYPES); do \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment