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

###############################################################################
# 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 :
cp tpeek tpop tpush $(INSTALL_DIR)/
install_dmenu :
cp todo $(INSTALL_DIR)/
uninstall :
rm $(INSTALL_DIR)/tpeek
rm $(INSTALL_DIR)/tpop
rm $(INSTALL_DIR)/tpush
rm -f $(INSTALL_DIR)/todo