Updatign makefile to include arch linux support

modified:   Makefile
This commit is contained in:
Brian Barto 2016-05-06 12:17:47 -04:00
parent 2c337e61dc
commit 3bd75128fb
1 changed files with 4 additions and 0 deletions

View File

@ -46,6 +46,10 @@ $(NCURSES_H):
then \
sudo yum update ; \
sudo yum install ncurses-devel ; \
elif [ -a /etc/arch-release ] ; \
then \
sudo pacman -Sy ; \
sudo pacman -S ncurses ; \
else \
sudo apt-get update ; \
sudo apt-get install ncurses-dev ; \