summaryrefslogtreecommitdiffstats
path: root/server/Makefile.in
diff options
context:
space:
mode:
authorStephen Gallagher <sgallagh@redhat.com>2009-01-23 09:48:07 -0500
committerSimo Sorce <idra@samba.org>2009-01-27 08:41:41 -0500
commit965bd60f9fae579184d3aa0c039775b37d67c27b (patch)
tree254e653b2948ca1117736a3eb475229d7d7b0e45 /server/Makefile.in
parentd9f203e045c63c853ae60b47fb8013e92600c9f9 (diff)
downloadsssd-965bd60f9fae579184d3aa0c039775b37d67c27b.tar.gz
sssd-965bd60f9fae579184d3aa0c039775b37d67c27b.tar.xz
sssd-965bd60f9fae579184d3aa0c039775b37d67c27b.zip
Fixes to the makefile to get make install to work properly
Diffstat (limited to 'server/Makefile.in')
-rw-r--r--server/Makefile.in10
1 files changed, 8 insertions, 2 deletions
diff --git a/server/Makefile.in b/server/Makefile.in
index b86d88110..6c7bdfd96 100644
--- a/server/Makefile.in
+++ b/server/Makefile.in
@@ -6,6 +6,7 @@ exec_prefix = @exec_prefix@
datarootdir = @datarootdir@
includedir = @includedir@
libdir = @libdir@
+libexecdir = @libexecdir@
bindir = @bindir@
sbindir = @sbindir@
mandir = @mandir@
@@ -57,9 +58,10 @@ MDLD_FLAGS = @MDLD_FLAGS@
OBJS = $(SERVER_OBJ) @LIBREPLACEOBJ@ $(EXTRA_OBJ)
-headers = .h
+headers =
-BINS = sbin/sssd sbin/sssd_nss sbin/sssd_dp sbin/sssd_be
+LIBEXECBINS = sbin/sssd_nss sbin/sssd_dp sbin/sssd_be
+BINS = sbin/sssd $(LIBEXECBINS)
SOLIBS = lib/libsss_proxy.$(SHLIBEXT)
DIRS = sbin lib
@@ -93,10 +95,14 @@ installdirs::
mkdir -p $(DESTDIR)$(includedir) $(DESTDIR)$(libdir) $(DESTDIR)$(sbindir)
installheaders:: installdirs
+ifneq (x$(headers), x)
cp $(headers) $(DESTDIR)$(includedir)
+endif
installlibs:: installdirs
+ifneq (x$(STATICLIB)$(LIBSOLIB), x)
cp $(STATICLIB) $(LIBSOLIB) $(DESTDIR)$(libdir)
+endif
installbin:: installdirs