Sergio Durigan Junior
f2a4ecb724
This is the beginning of the gdb-steroids talk. It's still missing a lot.
12 lines
193 B
Makefile
12 lines
193 B
Makefile
CC = pdflatex
|
|
TARGET = gdb-steroids
|
|
EXTENSION = tex
|
|
|
|
all:
|
|
set -e ; \
|
|
for i in 1 2 ; do \
|
|
$(CC) $(TARGET).$(EXTENSION) ; \
|
|
done ;
|
|
|
|
clean:
|
|
rm -f $(TARGET).{aux,log,nav,out,pdf,snm,toc,vrb}
|