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

19 lines
364 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 t* $(INSTALL_DIR)/
uninstall :
rm $(INSTALL_DIR)/tpeek
rm $(INSTALL_DIR)/tpop
rm $(INSTALL_DIR)/tpush