# bollux: a gemini client in bash # Author: Case Duckworth # License: MIT PREFIX ?= /usr PRGN := bollux .PHONY: def install uninstall def: @echo "run 'make install' to install" @echo "run 'make uninstall' to uninstall" install: $(PRGN) install -D $< $(DESTDIR)$(PREFIX)/bin uninstall: rm -f $(DESTDIR)$(PREFIX)/bin/$(PRGN)