X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/2b719dc0950d9e160458490cb1c69b7cd37d240d..b1a88e8b8c215a64c86e605de92ae65de4ce014c:/Makefile diff --git a/Makefile b/Makefile index 0c50b05..103a3be 100644 --- a/Makefile +++ b/Makefile @@ -1,38 +1,41 @@ -all: data/digraphs.inc.pl data/unicode-cover.inc.pl data/countries.inc.pl data/browser data/termcol-xcolor.inc.pl +all: sitemap.xml data/digraphs.inc.pl data/unicode-cover.inc.pl data/countries.inc.pl data/browser data/termcol-xcolor.inc.pl more: all data/digraphs-xorg.inc.pl download: data/DerivedAge.txt data/rfc1345.txt data/xorg-compose data/countryInfo.txt data/browser/caniuse data/browser/usage-wm.tsv data/xcolors .PHONY: download +sitemap.xml: tools/mksitemap + $< | sponge $@ + data/DerivedAge.txt: tools/wget-ifmodified http://www.unicode.org/Public/UNIDATA/$(@F) $@ data/unicode-age.inc.pl: tools/mkcharver data/DerivedAge.txt - $< $(word 2,$^) >$@ + $< $(word 2,$^) | sponge $@ data/rfc1345.txt: tools/wget-ifmodified http://www.ietf.org/rfc/$(@F) $@ data/digraphs-rfc.inc.pl: tools/mkdigraphs-rfc data/rfc1345.txt - $< $(word 2,$^) >$@ + $< $(word 2,$^) | sponge $@ data/digraphs-shiar.inc.pl: tools/mkdigraphs-shiar shiar.inc.txt - $< $(word 2,$^) >$@ + $< $(word 2,$^) | sponge $@ data/xorg-compose: tools/wget-ifmodified http://cgit.freedesktop.org/xorg/lib/libX11/plain/nls/en_US.UTF-8/Compose.pre $@ data/digraphs-xorg.inc.pl: tools/mkdigraphs-xorg data/xorg-compose - $< $(word 2,$^) >$@ + $< $(word 2,$^) | sponge $@ data/digraphs-vim.inc.pl: tools/mkdigraphs-vim - $< >$@ + $< | sponge $@ data/digraphs.inc.pl: tools/mkdigraphlist data/digraphs-rfc.inc.pl data/digraphs-vim.inc.pl data/digraphs-shiar.inc.pl data/unicode-char.inc.pl - $< >$@ + $< | sponge $@ data/unicode-char.inc.pl: tools/mkcharinfo data/digraphs-rfc.inc.pl data/digraphs-shiar.inc.pl data/unicode-age.inc.pl unicode-table.inc.pl - $< >$@ + $< | sponge $@ data/font/%.inc.pl: tools/mkttfinfo data/font/%.ttf $< $(word 2,$^) $@ || true @@ -43,7 +46,7 @@ data/xcolors: @[ -e $@ ] || git clone https://github.com/tlatsas/xcolors $@ data/termcol-xcolor.inc.pl: tools/mktermcol-xcolor data/xcolors/themes - $< $(word 2,$^)/* >$@ + $< $(word 2,$^)/* | sponge $@ .SECONDARY: data/font/%.ttf: @@ -79,13 +82,13 @@ data/font/all-other: data/font/unifont.inc.pl data/font/code2000.inc.pl data/fon # $< --headless unifont_upper.ttf >>$@ data/unicode-cover.inc.pl: tools/mkfontinfo data/font $(patsubst data/font/%.ttf,data/font/%.inc.pl,$(wildcard data/font/*.ttf)) - $< >$@ + $< | sponge $@ data/countryInfo.txt: tools/wget-ifmodified http://download.geonames.org/export/dump/$(@F) $@ data/countries.inc.pl: tools/mkcountries-geonames data/countryInfo.txt - $< $(word 2,$^) >$@ + $< $(word 2,$^) | sponge $@ data/browser: data/browser/support.inc.pl data/browser/usage-wm.inc.pl @@ -95,13 +98,13 @@ data/browser/caniuse: @[ -e $@ ] || git clone https://github.com/Fyrd/caniuse.git $@ data/browser/support.inc.pl: tools/mkcaniuse data/browser/caniuse/data.json - $< $(word 2,$^) >$@ + $< $(word 2,$^) | sponge $@ data/browser/usage-wm.tsv: tools/wget-ifmodified https://analytics.wikimedia.org/datasets/periodic/reports/metrics/browser/all_sites_by_browser_family_and_major_percent.tsv $@ data/browser/usage-wm.inc.pl: tools/mkusage-wikimedia data/browser/usage-wm.tsv - $< $(word 2,$^) >$@ + $< $(word 2,$^) | sponge $@ clean: -rm data/digraphs.inc.pl @@ -114,6 +117,6 @@ clean: .SECONDEXPANSION: -data/writing-latn.inc.pl: $$(@F) - perl -MData::Dumper -wE 'my @t = do "$<" or die $$@; print Data::Dumper->new([\@t])->Terse(1)->Quotekeys(0)->Indent(1)->Dump' >$@ +data/writing-latn.inc.pl: tools/perlinc-static $$(@F) + $< $(word 2,$^) | sponge $@