repo.or.cz
/
GalaxyCodeBases.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
modified: diffout.py
[GalaxyCodeBases.git]
/
c_cpp
/
lib
/
uthash
/
doc
/
Makefile
blob
06ecf8006dc010fd08df3219338ba67559a7bfd9
1
HTML
=$(
patsubst
%
.txt
,%
.html
,$(
wildcard
*
.txt
))
2
3
all
: $(
HTML
)
4
5
# when each target of a multi-target rule has its own prereq
6
# we use a static pattern rule.
7
$(
HTML
): %
.html
: %
.txt
8
asciidoc
-
a toc2
$<
9
10
TMP
=/
tmp
/
uthash-gh-pages
11
stage
:
12
mkdir
-
p
${
TMP
}
13
rm
-
if
${
TMP
}/*
14
cp
*
.html
*
.css
*
.png
${
TMP
}
15
16
.PHONY
:
clean
17
clean
:
18
$(
RM
) $(
HTML
)