[#4] Fix broken build with parallel make
Adding $(DIRS) dependency to fix parallel make build. Without this dependency targets downloading external databases may fail if output directory was not created yet. Signed-off-by: Stanislav Bogatyrev <s.bogatyrev@yadro.com>
This commit is contained in:
parent
7f404de0af
commit
a022bf2e40
1 changed files with 3 additions and 3 deletions
6
Makefile
6
Makefile
|
@ -21,16 +21,16 @@ $(DIRS):
|
|||
@echo "⇒ Ensure dir: $@"
|
||||
@mkdir -p $@
|
||||
|
||||
in/airports.dat:
|
||||
in/airports.dat: $(DIRS)
|
||||
wget -c https://raw.githubusercontent.com/jpatokal/openflights/master/data/airports.dat -O in/airports.dat
|
||||
|
||||
in/countries.dat:
|
||||
in/countries.dat: $(DIRS)
|
||||
wget -c https://raw.githubusercontent.com/jpatokal/openflights/master/data/countries.dat -O in/countries.dat
|
||||
|
||||
in/continents.geojson: $(DIRS)
|
||||
zcat continents.geojson.gz > in/continents.geojson
|
||||
|
||||
unlocode:
|
||||
unlocode :$(DIRS)
|
||||
wget -c https://service.unece.org/trade/locode/loc222csv.zip -O tmp/loc222csv.zip
|
||||
unzip -u tmp/loc222csv.zip -d in/
|
||||
|
||||
|
|
Loading…
Reference in a new issue