X-Git-Url: https://git.danieliu.xyz/?a=blobdiff_plain;f=Makefile;h=4e8d48918099c6380faa5132aaab3d0c5c0c6a94;hb=5ee2b6a0c18b0772a1124938f4ccff1123a56b89;hp=5801f84aa0da5ab74d2828311145018872ac2b75;hpb=c6516c715699de465423de60089efee1ec5857e1;p=smdp.git diff --git a/Makefile b/Makefile index 5801f84..4e8d489 100644 --- a/Makefile +++ b/Makefile @@ -18,25 +18,33 @@ # along with this program. If not, see . # -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