From 786a6e32825a90e99147d371ccd272d78b4d35ed Mon Sep 17 00:00:00 2001 From: Milan Bouchet-Valat Date: Fri, 27 Mar 2015 17:36:25 +0100 Subject: Add support for DESTDIR in make install Useful to build distribution packages. --- Makefile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 6f30a31..16ad336 100644 --- a/Makefile +++ b/Makefile @@ -74,12 +74,12 @@ libutf8proc.dylib: libutf8proc.$(MAJOR).dylib ln -f -s libutf8proc.$(MAJOR).dylib $@ install: libutf8proc.a libutf8proc.$(SHLIB_EXT) libutf8proc.$(SHLIB_VERS_EXT) - mkdir -m 755 -p $(includedir) - $(INSTALL) -m 644 utf8proc.h $(includedir) - mkdir -m 755 -p $(libdir) - $(INSTALL) -m 644 libutf8proc.a $(libdir) - $(INSTALL) -m 755 libutf8proc.$(SHLIB_VERS_EXT) $(libdir) - ln -f -s $(libdir)/libutf8proc.$(SHLIB_VERS_EXT) $(libdir)/libutf8proc.$(SHLIB_EXT) + mkdir -m 755 -p $(DESTDIR)$(includedir) + $(INSTALL) -m 644 utf8proc.h $(DESTDIR)$(includedir) + mkdir -m 755 -p $(DESTDIR)$(libdir) + $(INSTALL) -m 644 libutf8proc.a $(DESTDIR)$(libdir) + $(INSTALL) -m 755 libutf8proc.$(SHLIB_VERS_EXT) $(DESTDIR)$(libdir) + ln -f -s $(libdir)/libutf8proc.$(SHLIB_VERS_EXT) $(DESTDIR)$(libdir)/libutf8proc.$(SHLIB_EXT) # Test programs -- cgit v1.2.3