From 24fa54229b7cba30488fc5f4a904e97d44c067f0 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Michael=20G=C3=B6hler?= Date: Thu, 30 Oct 2014 21:56:21 +0100 Subject: [PATCH] fixed flipped DESTDIR and PREFIX, closes #49 --- Makefile | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) 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 -- 2.20.1