projects
/
pipstransfo.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
initial ordering of the transforms
[pipstransfo.git]
/
Makefile
1
LATEXMK
:=
latexmk
2
JOBNAME
:=
pipstransfo
3
4
.PHONY
:
default
5
default
:
build
6
7
.PHONY
:
build
8
build
:
depends
9
$(
LATEXMK
) $(
JOBNAME
)
.
tex
10
11
.PHONY
:
live
12
live
:
depends
13
$(
LATEXMK
) -
pvc
$(
JOBNAME
)
.
tex
14
15
.PHONY
:
depends
16
depends
:
17
18
.PHONY
:
clean
19
clean
:
20
$(
LATEXMK
) -
C
21
22
.PHONY
:
rebuild
23
rebuild
:
clean
build
24