Merge pull request #23 from mattn/win32
authormattn <mattn.jp@gmail.com>
Fri, 19 Sep 2014 06:01:30 +0000 (15:01 +0900)
committerMichael Göhler <somebody.here@gmx.de>
Mon, 22 Sep 2014 08:20:15 +0000 (10:20 +0200)
Windows porting
closes #23

Makefile
include/viewer.h
viewer.c

index 3c1715e..f0cf1ec 100644 (file)
--- a/Makefile
+++ b/Makefile
 #
 
 CFLAGS   = -O3 -Wall
-LDFLAGS  = -s
-LDLIBS   = -lncursesw
-OBJECTS  = cstring.o cstack.o markdown.o parser.o viewer.o mdp.o
-DESTDIR ?= /usr/bin
 
 ifeq ($(DEBUG),1)
-CFLAGS  := -Wall -g -O0
+CFLAGS  := -O0 -Wall -g
 LDFLAGS :=
 endif
 
+ifeq (Windows_NT, $(OS))
+CURSES   = pdcurses
+CFLAGS  += -DWIN32=1
+else
+CURSES   = ncursesw
+endif
+
+LDFLAGS  = -s
+LDLIBS   = -l$(CURSES)
+OBJECTS  = cstring.o cstack.o markdown.o parser.o viewer.o mdp.o
+DESTDIR  = /usr/bin
+
 all: mdp
 
 mdp: $(OBJECTS)
index dd786e4..b790085 100644 (file)
  *
  */
 
-#include <ncurses.h>
+#if WIN32 == 1
+# include <curses.h>
+#else
+# include <ncurses.h>
+#endif
 
 #include "parser.h"
 #include "cstack.h"
index 14018da..c1a0188 100644 (file)
--- a/viewer.c
+++ b/viewer.c
@@ -22,7 +22,6 @@
  */
 
 #include <locale.h> // setlocale
-#include <ncurses.h>
 #include <stdlib.h>
 #include <string.h> // strchr
 #include <unistd.h>