OSDN Git Service

LinGui: make Help->Guide work on windows/mingw
[handbrake-jp/handbrake-jp-git.git] / make / include / select.defs
1 ##
2 ## fetch a file from the web via well-known anonymous protocols such as HTTP.
3 ##
4 ## $(1) = output filename
5 ## $(2) = URL
6 ##
7 FETCH = $(FETCH.$(FETCH.select))
8
9 FETCH.select  = MISSING
10 FETCH.MISSING = $(error one of the following tools is required: wget, curl)
11 FETCH.curl    = $(CURL.exe) -q -L -o $(1) $(2)
12 FETCH.wget    = $(WGET.exe) -O $(1) $(2)