blob: 8c1426d3d9e1334e66ddd4d67b2b454f96ffcbf0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
URL := https://storage-waterfox.netdna-ssl.com/releases/linux64/installer/waterfox-classic-2019.12.en-US.linux-x86_64.tar.bz2
all:
wget -N ${URL}
docker build --tag fireslug .
clean:
git clean -fx
.PHONY: all clean
|