X-Git-Url: https://git.danieliu.xyz/?a=blobdiff_plain;f=Makefile;h=c1f8658eaf18eee73c2b81385402f01eee1124a1;hb=4b8ad1b3b464836eca2e876dd418a8e8d87bd721;hp=7f17a1bcca0b1c3a7698fe0eecd60f17ba51cc81;hpb=a10fcae3cba4f58550b24b0029f3932615dadbc3;p=smdp.git diff --git a/Makefile b/Makefile index 7f17a1b..c1f8658 100644 --- a/Makefile +++ b/Makefile @@ -18,25 +18,34 @@ # 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 = +PREFIX = /usr/local + +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 @@ -50,10 +59,10 @@ clean: $(RM) $(TARGET) install: - install -d $(PREFIX)$(DESTDIR) - install -m 755 mdp $(PREFIX)$(DESTDIR)/$(TARGET) + install -d $(DESTDIR)$(PREFIX)/bin + install -m 755 mdp $(DESTDIR)$(PREFIX)/bin/$(TARGET) uninstall: - $(RM) $(PREFIX)$(DESTDIR)/$(TARGET) + $(RM) $(DESTDIR)$(PREFIX)/$(TARGET) .PHONY: all clean install src uninstall