Signed-off-by: Jason Zaman <[email protected]>
---
Makefile | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/Makefile b/Makefile
index 8df4ce3..7701e16 100644
--- a/Makefile
+++ b/Makefile
@@ -8,6 +8,13 @@ ifeq ($(DEBUG),1)
export LDFLAGS = -g
endif
+ifneq ($(DESTDIR),)
+ CFLAGS += -I$(DESTDIR)/usr/include
+ LDFLAGS += -L$(DESTDIR)/usr/lib
+ export CFLAGS
+ export LDFLAGS
+endif
+
all install relabel clean test indent:
@for subdir in $(SUBDIRS); do \
(cd $$subdir && $(MAKE) $@) || exit 1; \
--
2.10.2