blob: c9c418c448a9bf4b3eb0c04f84840ba2f5ef37ed (
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 fireduck .
clean:
git clean -fx
.PHONY: all clean
|