Inital commit

This commit is contained in:
Tyler Perkins
2021-10-22 11:00:53 -04:00
commit a18dff8441
6 changed files with 100 additions and 0 deletions

18
Makefile Normal file
View File

@@ -0,0 +1,18 @@
###############################################################################
# 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