This repository has been archived on 2023-12-10. You can view files and clone it, but cannot push or open issues or pull requests.
stackToDo/Makefile

23 lines
447 B
Makefile
Raw Normal View History

2021-10-22 15:00:53 +00:00
###############################################################################
# Tyler Perkins
# 21-10-21
# Makefile to install stackToDo
#
#Install for one user
INSTALL_DIR="$${HOME}/.local/bin"
#Install system wide
#INSTALL_DIR="/usr/bin"
install :
2021-10-22 15:22:23 +00:00
cp tpeek tpop tpush $(INSTALL_DIR)/
install_dmenu :
cp todo $(INSTALL_DIR)/
2021-10-22 15:00:53 +00:00
uninstall :
rm $(INSTALL_DIR)/tpeek
rm $(INSTALL_DIR)/tpop
rm $(INSTALL_DIR)/tpush
2021-10-22 15:22:23 +00:00
rm -f $(INSTALL_DIR)/todo