diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2022-03-19 02:31:29 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2022-03-19 02:31:29 +0300 |
commit | 372ad9496db4d46b5a04d124089ebdce09eb18b2 (patch) | |
tree | 57b3344a64343c792c3c3ac7d47a8e9a34ac2a80 | |
parent | Makefile: fix accidental failures (diff) | |
download | sorting-algorithms-372ad9496db4d46b5a04d124089ebdce09eb18b2.tar.gz sorting-algorithms-372ad9496db4d46b5a04d124089ebdce09eb18b2.zip |
Makefile: add view
-rw-r--r-- | Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -43,3 +43,7 @@ URL := http://localhost:4000/sorting-algorithms/ .PHONY: wget wget: wget --no-verbose --recursive --no-parent --convert-links --adjust-extension -e robots=off --directory-prefix=.wget -- '$(call escape,$(URL))' + +.PHONY: view +view: + xdg-open '$(call escape,$(URL))' &> /dev/null |