summaryrefslogtreecommitdiff
path: root/source3/Makefile.in
diff options
context:
space:
mode:
authorDan Sledz <dan.sledz@isilon.com>2009-02-13 12:24:22 -0800
committerSteven Danneman <steven.danneman@isilon.com>2009-02-20 19:39:07 -0800
commitc383022f89a34b83039502cc58178498cc06370e (patch)
tree64202b4165734099e1cf848d181deb19027cf4bc /source3/Makefile.in
parente311dcff2272968959b4268c2e7aad351443b191 (diff)
downloadsamba-c383022f89a34b83039502cc58178498cc06370e.tar.gz
samba-c383022f89a34b83039502cc58178498cc06370e.tar.bz2
samba-c383022f89a34b83039502cc58178498cc06370e.zip
Introduce a new authentication backend auth_onefs_wb
This new backend is custom tailored to onefs' unique requirements: 1) No fallback logic 2) Does not validate the domain of the user 3) Handles unencrypted passwords
Diffstat (limited to 'source3/Makefile.in')
-rw-r--r--source3/Makefile.in5
1 files changed, 5 insertions, 0 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in
index 98ed810f24..a0bd4ab303 100644
--- a/source3/Makefile.in
+++ b/source3/Makefile.in
@@ -685,6 +685,7 @@ AUTH_SAM_OBJ = auth/auth_sam.o
AUTH_SERVER_OBJ = auth/auth_server.o
AUTH_UNIX_OBJ = auth/auth_unix.o
AUTH_WINBIND_OBJ = auth/auth_winbind.o
+AUTH_ONEFS_WB_OBJ = auth/auth_onefs_wb.o
AUTH_SCRIPT_OBJ = auth/auth_script.o
AUTH_NETLOGOND_OBJ = auth/auth_netlogond.o
@@ -2343,6 +2344,10 @@ bin/winbind.@SHLIBEXT@: $(BINARY_PREREQS) $(AUTH_WINBIND_OBJ)
@echo "Building plugin $@"
@$(SHLD_MODULE) $(AUTH_WINBIND_OBJ)
+bin/onefs_wb.@SHLIBEXT@: $(BINARY_PREREQS) $(AUTH_ONEFS_WB_OBJ)
+ @echo "Building plugin $@"
+ @$(SHLD_MODULE) $(AUTH_ONEFS_WB_OBJ)
+
bin/unix.@SHLIBEXT@: $(BINARY_PREREQS) $(AUTH_UNIX_OBJ)
@echo "Building plugin $@"
@$(SHLD_MODULE) $(AUTH_UNIX_OBJ)