7 rsync
-av
--delete doc
/ dcvr
:/srv
/bogomips
/local-openid
/
8 git ls-files | xargs touch
11 rdoc
-Na
-m README.txt
-t
"$(shell sed -ne '1s/^= //p' README.txt)"
13 # Create gzip variants of the same timestamp as the original so nginx
14 # "gzip_static on" can serve the gzipped versions directly.
15 doc_gz
: suf
:= html js css
16 doc_gz
: globs
:= $(addprefix doc
/*.
,$(suf
)) $(addprefix doc
/*/*.
,$(suf
))
17 doc_gz
: docs
:= $(wildcard $(globs
))
19 for i in
$(docs
); do gzip
< $$i > $$i.gz
; touch
-r
$$i $$i.gz
; done