File: Makefile

package info (click to toggle)
f2j 0.8.1-2
  • links: PTS, VCS
  • area: non-free
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 2,648 kB
  • ctags: 3,413
  • sloc: ansic: 21,114; java: 5,874; yacc: 3,804; makefile: 178; sh: 153
file content (18 lines) | stat: -rw-r--r-- 504 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
LATEX=pdflatex
BIBTEX=bibtex

SOURCES = f2j_ug.tex title.tex

all:
	if [ ! -e f2j_ug.orig.pdf ] ; then if [ -e f2j_ug.pdf ] ; then mv f2j_ug.pdf f2j_ug.orig.pdf ; else echo "Original file f2j_ug.pdf is missing" ; fi ; fi
	$(LATEX) f2j_ug.tex 
	# $(BIBTEX) f2j_ug
	# $(LATEX) f2j_ug.tex
	$(LATEX) f2j_ug.tex

almost_clean:
	rm -f f2j_ug.dvi f2j_ug.ps *.aux *.log *.out
	
clean:
	rm -f f2j_ug.dvi f2j_ug.ps *.aux *.log *.out *.bbl *.blg
	if [ -e f2j_ug.orig.pdf ] ; then mv f2j_ug.orig.pdf f2j_ug.pdf ; fi