diff options
author | Tim Potter <tpot@samba.org> | 2001-07-24 23:30:13 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2001-07-24 23:30:13 +0000 |
commit | bec370b07916fb2f601f505d2482beb5c284b472 (patch) | |
tree | 01ef55004f0fee1e64090352f020fe26ccc5d23c /source3/Makefile.in | |
parent | 1cbae7315f99835ee294ce96858f73b5f8a18cfe (diff) | |
download | samba-bec370b07916fb2f601f505d2482beb5c284b472.tar.gz samba-bec370b07916fb2f601f505d2482beb5c284b472.tar.xz samba-bec370b07916fb2f601f505d2482beb5c284b472.zip |
Store winbindd in the sbin directory. Make the winbind pam module also as
a sbin program.
Currently the pam and nss modules are installed into @prefix@/sbin - I'm
not sure whether this is a good idea or not. Perhaps they should be left
in the build tree and copied across as needed by hand or a packaging tool.
(This used to be commit 09af934c4aa295bec494740d94de76e5e4497887)
Diffstat (limited to 'source3/Makefile.in')
-rw-r--r-- | source3/Makefile.in | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in index f1ab28d692..b7e15b119a 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -77,13 +77,15 @@ FLAGS5 = $(FLAGS1) $(FLAGS2) $(FLAGS3) $(FLAGS4) -DHAVE_INCLUDES_H FLAGS = $(ISA) $(FLAGS5) $(PASSWD_FLAGS) FLAGS32 = $(ISA32) $(FLAGS5) $(PASSWD_FLAGS) -SPROGS = bin/smbd bin/nmbd bin/swat -PROGS1 = bin/smbclient bin/smbspool bin/testparm bin/testprns bin/smbstatus bin/smbcontrol @RUNPROG@ +WINBIND_PROGS = bin/wbinfo +WINBIND_SPROGS = bin/winbindd nsswitch/libnss_winbind.so +WINBIND_PAM_PROGS = nsswitch/pam_winbind.so + +SPROGS = bin/smbd bin/nmbd bin/swat @WINBIND_STARGETS@ +PROGS1 = bin/smbclient bin/smbspool bin/testparm bin/testprns bin/smbstatus bin/smbcontrol @RUNPROG@ @WINBIND_TARGETS@ PROGS2 = bin/smbpasswd bin/rpcclient bin/smbcacls @WRAP@ @WRAP32@ @PAM_MOD@ MPROGS = @MPROGS@ -WINBIND_PROGS = nsswitch/libnss_winbind.so bin/winbindd bin/wbinfo -WINBIND_PAM_PROGS = nsswitch/pam_winbind.so -PROGS = $(PROGS1) $(PROGS2) $(MPROGS) bin/nmblookup bin/make_printerdef bin/pdbedit @WINBIND_TARGETS@ +PROGS = $(PROGS1) $(PROGS2) $(MPROGS) bin/nmblookup bin/make_printerdef bin/pdbedit TORTURE_PROGS = bin/smbtorture bin/msgtest bin/masktest bin/locktest bin/locktest2 SHLIBS = libsmbclient |