view verysimpleslideshow/Makefile @ 17:3b8fd6a7f2d0

bing4desktop-0.240207-2
author prymula <prymula76@outlook.com>
date Wed, 07 Feb 2024 12:11:34 +0100
parents dcd610585610
children
line wrap: on
line source


prefix=/usr/local

all:

install:
	install -m 0755 verysimpleslideshow.py $(prefix)/bin
	ln -s $(prefix)/bin/verysimpleslideshow.py $(prefix)/bin/vsss


uninstall:
	rm $(prefix)/bin/vsss
	rm $(prefix)/bin/verysimpleslideshow.py
	
.PHONY: all install uninstall