From edb6b822fda2551d30c5dcaea7a69d6be75ce292 Mon Sep 17 00:00:00 2001 From: Mischa POSLAWSKY Date: Thu, 19 Feb 2015 16:54:53 +0100 Subject: [PATCH] tools: depend on tools to create includes Force recreate whenever code is changed. --- Makefile | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/Makefile b/Makefile index cf8618b..5fb160c 100644 --- a/Makefile +++ b/Makefile @@ -6,36 +6,36 @@ download: data/DerivedAge.txt data/rfc1345.txt data/countryInfo.txt data/caniuse data/DerivedAge.txt: tools/wget-ifmodified http://www.unicode.org/Public/UNIDATA/$(@F) $@ -unicode-age.inc.pl: data/DerivedAge.txt - tools/mkcharver $< >$@ +unicode-age.inc.pl: tools/mkcharver data/DerivedAge.txt + $< $(word 2,$^) >$@ data/rfc1345.txt: tools/wget-ifmodified http://www.ietf.org/rfc/$(@F) $@ -digraphs.inc.pl: data/rfc1345.txt shiar.inc.txt - tools/mkdigraphlist $< >$@ +digraphs.inc.pl: tools/mkdigraphlist data/rfc1345.txt shiar.inc.txt + $< $(word 2,$^) >$@ -unicode-char.inc.pl: digraphs.inc.pl unicode-age.inc.pl - tools/mkcharinfo >$@ +unicode-char.inc.pl: tools/mkcharinfo digraphs.inc.pl unicode-age.inc.pl + $< >$@ -ttfsupport: - mkdir -p ttfsupport - tools/convert-allfonts +ttfsupport: tools/convert-allfonts + mkdir -p $@ + $< -unicode-cover.inc.pl: ttfsupport tools/mkfontinfo - tools/mkfontinfo >$@ +unicode-cover.inc.pl: tools/mkfontinfo ttfsupport + $< >$@ data/countryInfo.txt: tools/wget-ifmodified http://download.geonames.org/export/dump/$(@F) $@ -countries.inc.pl: data/countryInfo.txt - tools/mkcountries-geonames $< >$@ +countries.inc.pl: tools/mkcountries-geonames data/countryInfo.txt + $< $(word 2,$^) >$@ data/caniuse.json: tools/wget-ifmodified http://caniuse.com/data.json $@ -data/browser/support.inc.pl: data/caniuse.json - tools/mkcaniuse $< >$@ +data/browser/support.inc.pl: tools/mkcaniuse data/caniuse.json + $< $(word 2,$^) >$@ clean: -rm digraphs.inc.pl -- 2.30.0