X-Git-Url: https://git.danieliu.xyz/?a=blobdiff_plain;f=Makefile;h=0db1ec6f693cc66ae0edb768e8ba50b2e673be07;hb=354cf2e07ccd0d7900f96bffc279093997cbe203;hp=c1f8658eaf18eee73c2b81385402f01eee1124a1;hpb=6e777ea835c4c83d2a4c1d8e33d0d6a9ec0bfad0;p=smdp.git diff --git a/Makefile b/Makefile index c1f8658..0db1ec6 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,11 +20,11 @@ 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 = -PREFIX = /usr/local +PREFIX ?= /usr/local CURSES = ncursesw LDFLAGS ?= -s @@ -60,7 +60,9 @@ clean: install: install -d $(DESTDIR)$(PREFIX)/bin - install -m 755 mdp $(DESTDIR)$(PREFIX)/bin/$(TARGET) + install -m 755 $(TARGET) $(DESTDIR)$(PREFIX)/bin/$(TARGET) + install -d $(DESTDIR)$(PREFIX)/share/man/man1 + install -m 644 mdp.1 $(DESTDIR)$(PREFIX)/share/man/man1/$(TARGET).1 uninstall: $(RM) $(DESTDIR)$(PREFIX)/$(TARGET)