aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 3a5617a3ad39c943ac894dd1d53859aefe1c0d20 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
URL := https://storage-waterfox.netdna-ssl.com/releases/linux64/installer/waterfox-56.2.14.en-US.linux-x86_64.tar.bz2

all:
	wget -N ${URL}
	docker build --tag waterbox .

clean:
	git clean -fx

.PHONY: all clean