From f5f8ae5e9f5609cd8a779579f5e6148a55ae8c73 Mon Sep 17 00:00:00 2001 From: tomo Date: Sat, 12 Jan 2008 15:05:05 +0000 Subject: [PATCH] (MKDIR): New variable. (install.h): Make $(INCLUDE_INSTALLDIR). (install.libs): Make $(LIB_INSTALLDIR). --- Makefile.in | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile.in b/Makefile.in index 80966f0..8cb5d59 100644 --- a/Makefile.in +++ b/Makefile.in @@ -7,6 +7,7 @@ LIBTOOL = @LIBTOOL@ RM = /bin/rm -f TAR = tar +MKDIR = mkdir -p ## The default location for installation. Everything is placed in @@ -65,9 +66,11 @@ name.lo: name.c concord-name.h install: install.h install.libs install.h: + $(MKDIR) $(INCLUDE_INSTALLDIR) install -c $(HEADERS) $(INCLUDE_INSTALLDIR) install.libs: libconcord.la + $(MKDIR) $(LIB_INSTALLDIR) $(LIBTOOL) --mode=install install -c libconcord.la $(LIB_INSTALLDIR) -- 1.7.10.4