about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--Makefile6
-rw-r--r--config.mk3
2 files changed, 6 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index c0bf149..65c0a9c 100644
--- a/Makefile
+++ b/Makefile
@@ -39,12 +39,12 @@ clean:
 	$(MAKE) -C tests clean
 
 install-header:
-	install -m 644 $(H) $(PREFIX)/include
+	install -m 644 $(H) $(DESTDIR)$(PREFIX)/include
 
 install-static: $(SNAME)
-	install -m 755 $(SNAME) $(PREFIX)/lib64
+	install -m 755 $(SNAME) $(DESTDIR)$(PREFIX)/lib64
 
 install-shared: $(DNAME)
-	install -m 755 $(DNAME) $(PREFIX)/lib64
+	install -m 755 $(DNAME) $(DESTDIR)$(PREFIX)/lib64
 
 install: install-header install-static install-shared
diff --git a/config.mk b/config.mk
index 6c0501d..8f1c34d 100644
--- a/config.mk
+++ b/config.mk
@@ -1,4 +1,7 @@
+ifeq ($(PREFIX),)
 PREFIX = /usr/local
+endif
+
 BUILD_DIR = build
 NAME = libumumble
 SNAME = $(NAME).a