diff options
author | Michael Adam <obnox@samba.org> | 2013-09-23 02:00:56 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2013-09-23 20:21:27 +0200 |
commit | fcb3d88e06664a2fc6c06f14b5acb692e6c301b3 (patch) | |
tree | e1cf2df9b48976dfd39d94818ef942cbf68392d8 | |
parent | f8db64ecdbe50a2a828463334493ac51a6753f90 (diff) | |
download | samba-fcb3d88e06664a2fc6c06f14b5acb692e6c301b3.tar.gz samba-fcb3d88e06664a2fc6c06f14b5acb692e6c301b3.tar.bz2 samba-fcb3d88e06664a2fc6c06f14b5acb692e6c301b3.zip |
build: list sources of smbclient directly in the definition
Signed-off-by: Michael Adam <obnox@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
-rwxr-xr-x | source3/wscript_build | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/source3/wscript_build b/source3/wscript_build index 4982b3b878..cee120cf8f 100755 --- a/source3/wscript_build +++ b/source3/wscript_build @@ -461,11 +461,6 @@ LIBSMBSHAREMODES_SRC0 = 'libsmb/smb_share_modes.c' LIBSMBSHAREMODES_SRC = '${LIBSMBSHAREMODES_SRC0}' -CLIENT_SRC = ''' - client/client.c - client/clitar.c - client/dnsbrowse.c''' - LIB_SMBCONF_SRC = 'lib/smbconf/smbconf_init.c lib/smbconf/smbconf_reg.c' SMBCONFTORT_SRC0 = 'lib/smbconf/testsuite.c' @@ -1247,7 +1242,9 @@ bld.SAMBA3_BINARY('rpcclient/rpcclient', vars=locals()) bld.SAMBA3_BINARY('client/smbclient', - source=CLIENT_SRC, + source='''client/client.c + client/clitar.c + client/dnsbrowse.c''', deps=''' talloc popt_samba3 |