From 448e12371692801764eddcc48ad7df2e555820ea Mon Sep 17 00:00:00 2001 From: Mischa POSLAWSKY Date: Thu, 12 Feb 2015 06:36:06 +0100 Subject: [PATCH] tools: replace repeated make prerequisites by $< --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 91df36d..987db41 100644 --- a/Makefile +++ b/Makefile @@ -4,13 +4,13 @@ data/DerivedAge.txt: wget http://www.unicode.org/Public/UNIDATA/DerivedAge.txt -O $@ unicode-age.inc.pl: data/DerivedAge.txt - tools/mkcharver data/DerivedAge.txt >$@ + tools/mkcharver $< >$@ data/rfc1345.txt: wget http://www.ietf.org/rfc/rfc1345.txt -O $@ digraphs.inc.pl: data/rfc1345.txt - tools/mkdigraphlist data/rfc1345.txt >$@ + tools/mkdigraphlist $< >$@ unicode-char.inc.pl: digraphs.inc.pl unicode-age.inc.pl tools/mkcharinfo >$@ @@ -26,13 +26,13 @@ data/countryInfo.txt: wget http://download.geonames.org/export/dump/countryInfo.txt -O $@ countries.inc.pl: data/countryInfo.txt - tools/mkcountries-geonames data/countryInfo.txt >$@ + tools/mkcountries-geonames $< >$@ data/caniuse.json: tools/wget-ifmodified http://caniuse.com/data.json $@ data/browser/support.inc.pl: data/caniuse.json - tools/mkcaniuse data/caniuse.json >$@ + tools/mkcaniuse $< >$@ clean: -rm digraphs.inc.pl -- 2.30.0