Files
timeshift-autosnap-apt/Makefile
Shriraj 13972d5a6c Uninstall added in makefile
Removes 3 installed files with sudo make uninstall
2020-10-12 00:00:29 +05:30

14 lines
445 B
Makefile

PKGNAME ?= timeshift-autosnap-apt
.PHONY: install
install:
@install -Dm644 -t "$(DESTDIR)/etc/apt/apt.conf.d/" 80-timeshift-autosnap-apt
@install -Dm755 -t "$(DESTDIR)/usr/bin/" timeshift-autosnap-apt
@install -Dm644 -t "$(LIB_DIR)/etc/" timeshift-autosnap-apt.conf
uninstall:
rm -f $(DESTDIR)/etc/apt/apt.conf.d/80-timeshift-autosnap-apt
rm -f $(DESTDIR)/usr/bin/timeshift-autosnap-apt
rm -f $(LIB_DIR)/etc/timeshift-autosnap-apt.conf