aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2019-09-13 22:17:40 +0000
committerRob Austein <sra@hactrn.net>2019-09-13 23:14:48 +0000
commit1403342af01f51c074d2dcc7fe37be3b21611fe5 (patch)
treeae0a5b6ceca84479c341de461988ccf60e7ea72b /Makefile
parent482d7fbdbf1cb57da38f83119dd1d7e0b0f65242 (diff)
Try waterfox
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 2a3e1c7..3a5617a 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,10 @@
+URL := https://storage-waterfox.netdna-ssl.com/releases/linux64/installer/waterfox-56.2.14.en-US.linux-x86_64.tar.bz2
+
all:
- docker build --tag firedock .
+ wget -N ${URL}
+ docker build --tag waterbox .
clean:
- @true
+ git clean -fx
.PHONY: all clean