version bump
[smdp.git] / src / Makefile
index ac4888e..a294df0 100644 (file)
@@ -1,6 +1,6 @@
 #
 # Makefile
-# Copyright (C) 2014 Michael Goehler
+# Copyright (C) 2018 Michael Goehler
 #
 # This file is part of mdp.
 #
@@ -22,8 +22,9 @@ UNAME_S := $(shell uname -s 2>/dev/null || echo not)
 
 SOURCES  = $(wildcard *.c)
 OBJECTS  = $(SOURCES:.c=.o)
-CFLAGS   = -O3 -Wall
-CPPFLAGS = -I../include
+CFLAGS   ?= -O3
+CFLAGS   += -Wall
+CPPFLAGS += -I../include
 
 ifeq ($(DEBUG),1)
        CFLAGS := -O0 -Wall -g
@@ -32,12 +33,14 @@ endif
 ifeq ($(OS),Windows_NT)
        ifeq (,$(findstring CYGWIN,$(UNAME_S)))
                CPPFLAGS += -DWIN32
+       else
+               CPPFLAGS += -DCYGWIN
        endif
 endif
 
 ifeq ($(UNAME_S),Linux)
        LSB_RELEASE := $(shell lsb_release -si 2>/dev/null || echo not)
-       ifneq ($(filter $(LSB_RELEASE),Debian Ubuntu LinuxMint),)
+       ifneq ($(filter $(LSB_RELEASE),Debian Ubuntu LinuxMint CrunchBang),)
                CPPFLAGS += -I/usr/include/ncursesw
        endif
 endif