Changed test for OS to account for Fedora and RHEL/CentOS more accurately. Also updaated the ncurses-dev to ncusrses-devel for same.

This commit is contained in:
Ivan Makfinsky 2016-05-06 11:24:32 -04:00
parent 4c5e2c7f74
commit ba06fa3eac
1 changed files with 12 additions and 13 deletions

View File

@ -16,7 +16,6 @@ CC = gcc
CFLAGS = -Wextra -Wall
LDLIBS = -lncurses
NCURSES_H = /usr/include/ncurses.h
UNAME = $(shell uname)
.PHONY: all install uninstall clean
@ -39,18 +38,18 @@ $(OBJ):
mkdir $(OBJ)
$(NCURSES_H):
ifeq ($(UNAME), Linux)
sudo apt-get update
sudo apt-get install ncurses-dev
endif
ifeq ($(UNAME), CentOS)
sudo yum update
sudo yum install ncurses-dev
endif
ifeq ($(UNAME), Fedora)
sudo dnf update --refresh
sudo dnf install ncurses-dev
endif
if [ -a /etc/fedora-release ] ; \
then \
sudo dnf update --refresh ; \
sudo dnf install ncurses-devel ; \
elif [ -a /etc/redhat-release ] ; \
then \
sudo yum update ; \
sudo yum install ncurses-devel ; \
else \
sudo apt-get update ; \
sudo apt-get install ncurses-dev ; \
fi
clean:
rm -rf $(BIN)