From: Michael Göhler Date: Thu, 30 Oct 2014 20:56:21 +0000 (+0100) Subject: fixed flipped DESTDIR and PREFIX, closes #49 X-Git-Url: https://git.danieliu.xyz/?p=smdp.git;a=commitdiff_plain;h=24fa54229b7cba30488fc5f4a904e97d44c067f0 fixed flipped DESTDIR and PREFIX, closes #49 --- diff --git a/Makefile b/Makefile index 1231bde..9abc3c0 100644 --- a/Makefile +++ b/Makefile @@ -23,7 +23,8 @@ UNAME_S := $(shell uname -s 2>/dev/null || echo not) SOURCES = $(wildcard src/*.c) OBJECTS = $(SOURCES:.c=.o) TARGET = mdp -DESTDIR = /usr/bin +DESTDIR = +PREFIX = /usr/local CURSES = ncursesw LDFLAGS = -s @@ -58,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