File: Makefile

package info (click to toggle)
tagcoll 0.99-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 1,180 kB
  • ctags: 95
  • sloc: sh: 8,362; cpp: 817; makefile: 27
file content (22 lines) | stat: -rw-r--r-- 390 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
NAME=tagbk-draft

all: $(NAME).ps $(NAME).pdf

$(NAME).pdf: $(NAME).aux
	pdflatex $(NAME).tex

$(NAME).ps: $(NAME).dvi
	dvips $(NAME) -o

$(NAME).dvi: $(NAME).bbl
	latex $(NAME).tex
	latex $(NAME).tex

$(NAME).aux: $(NAME).tex
	latex $<

$(NAME).bbl: $(NAME).aux
	bibtex $(NAME)

clean:
	rm -f $(NAME).aux $(NAME).bbl $(NAME).blg $(NAME).ps $(NAME).pdf $(NAME).dvi $(NAME).idx $(NAME).log