X-Git-Url: https://git.danieliu.xyz/?a=blobdiff_plain;f=Makefile;h=1d6f3ef5305f4a176c46f8b4567f00044e200d09;hb=d1f812f678796132cc0e8968a5a7c44ceed478f5;hp=cfb80feccfd49de4b22825a9e5974240c1d4fca0;hpb=01a21345277528bb331653603e0d3771e5ed5870;p=smdp.git diff --git a/Makefile b/Makefile index cfb80fe..1d6f3ef 100644 --- a/Makefile +++ b/Makefile @@ -24,7 +24,7 @@ SOURCES = $(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)