switch to uname -s -- another try on #35
authorMichael Göhler <somebody.here@gmx.de>
Sun, 28 Sep 2014 11:11:19 +0000 (13:11 +0200)
committerMichael Göhler <somebody.here@gmx.de>
Sun, 28 Sep 2014 11:11:19 +0000 (13:11 +0200)
Makefile
include/viewer.h
src/Makefile

index 5801f84..4e8d489 100644 (file)
--- a/Makefile
+++ b/Makefile
 # along with this program. If not, see <http://www.gnu.org/licenses/>.
 #
 
-CURSES   = ncursesw
-ifeq (Windows_NT, $(OS))
-OSTYPE  := $(shell uname -o)
-ifneq (Cygwin, $(OSTYPE))
-CURSES  := pdcurses
-endif
+UNAME_S := $(shell uname -s 2>/dev/null || echo not)
+
+SOURCES = $(wildcard src/*.c)
+OBJECTS = $(SOURCES:.c=.o)
+TARGET  = mdp
+DESTDIR = /usr/bin
+
+CURSES  = ncursesw
+LDFLAGS = -s
+
+ifeq (Windows_NT,$(OS))
+       ifeq (,$(findstring CYGWIN,$(UNAME_S)))
+               CURSES := pdcurses
+       endif
 endif
 
-LDFLAGS  = -s
-LDLIBS   = -l$(CURSES)
-SOURCES  = $(wildcard src/*.c)
-OBJECTS  = $(SOURCES:.c=.o)
-TARGET   = mdp
-DESTDIR  = /usr/bin
+ifeq ($(UNAME_S),Darwin)
+       CURSES := ncurses
+       LDFLAGS :=
+endif
 
 ifeq ($(DEBUG),1)
-LDFLAGS :=
+       LDFLAGS :=
 endif
 
+LDLIBS   = -l$(CURSES)
+
 all: $(TARGET)
 
 $(TARGET): src
index b790085..7a80eaa 100644 (file)
  *
  */
 
-#if WIN32 == 1
-# include <curses.h>
+#if defined( WIN32 )
+#include <curses.h>
 #else
-# include <ncurses.h>
+#include <ncurses.h>
 #endif
 
 #include "parser.h"
index 42d5563..f41e99a 100644 (file)
 # along with this program. If not, see <http://www.gnu.org/licenses/>.
 #
 
+UNAME_S := $(shell uname -s 2>/dev/null || echo not)
+
 SOURCES = $(wildcard *.c)
 OBJECTS = $(SOURCES:.c=.o)
+CFLAGS  = -O3 -Wall -I../include
 
-CFLAGS   = -O3 -Wall -I../include
 ifeq ($(DEBUG),1)
-CFLAGS  := -O0 -Wall -g -I../include
+       CFLAGS := -O0 -Wall -g -I../include
 endif
 
-ifeq (Windows_NT, $(OS))
-OSTYPE  := $(shell uname -o)
-ifneq (Cygwin, $(OSTYPE))
-CFLAGS  += -DWIN32=1
-endif
+ifeq ($(OS),Windows_NT)
+       ifeq (,$(findstring CYGWIN,$(UNAME_S)))
+               CFLAGS += -DWIN32
+       endif
 endif
 
 all: $(OBJECTS)