X-Git-Url: https://git.danieliu.xyz/?p=smdp.git;a=blobdiff_plain;f=Makefile;h=1d47fa0c086e38569b66444877bd8235b8851503;hp=4e8d48918099c6380faa5132aaab3d0c5c0c6a94;hb=HEAD;hpb=5ee2b6a0c18b0772a1124938f4ccff1123a56b89 diff --git a/Makefile b/Makefile index 4e8d489..1d47fa0 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ # # Makefile -# Copyright (C) 2014 Michael Goehler +# Copyright (C) 2018 Michael Goehler # # This file is part of mdp. # @@ -20,13 +20,14 @@ UNAME_S := $(shell uname -s 2>/dev/null || echo not) -SOURCES = $(wildcard src/*.c) +SOURCES = $(sort $(wildcard src/*.c)) OBJECTS = $(SOURCES:.c=.o) -TARGET = mdp -DESTDIR = /usr/bin +TARGET = smdp +DESTDIR = +PREFIX ?= /usr/local CURSES = ncursesw -LDFLAGS = -s +LDFLAGS ?= -s ifeq (Windows_NT,$(OS)) ifeq (,$(findstring CYGWIN,$(UNAME_S))) @@ -58,11 +59,13 @@ clean: $(RM) $(TARGET) install: - install -d $(PREFIX)$(DESTDIR) - install -m 755 mdp $(PREFIX)$(DESTDIR)/$(TARGET) + install -d $(DESTDIR)$(PREFIX)/bin + install -m 755 $(TARGET) $(DESTDIR)$(PREFIX)/bin/$(TARGET) + install -d $(DESTDIR)$(PREFIX)/share/man/man1 + install -m 644 smdp.1 $(DESTDIR)$(PREFIX)/share/man/man1/$(TARGET).1 uninstall: - $(RM) $(PREFIX)$(DESTDIR)/$(TARGET) + $(RM) $(DESTDIR)$(PREFIX)/bin/$(TARGET) + $(RM) $(DESTDIR)$(PREFIX)/share/man/man1/$(TARGET).1 .PHONY: all clean install src uninstall -