diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-03-03 18:25:28 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-03-03 18:25:28 +0100 |
commit | b29d47edcf2767d7f9e9f63332079c6e8e89946c (patch) | |
tree | 4d744bee8f5c7f14641bfc030e3f76dff2604add /source4/libnet | |
parent | f0bac65d9a184d5faedec4d8b325496478d2e54c (diff) | |
download | samba-b29d47edcf2767d7f9e9f63332079c6e8e89946c.tar.gz samba-b29d47edcf2767d7f9e9f63332079c6e8e89946c.tar.bz2 samba-b29d47edcf2767d7f9e9f63332079c6e8e89946c.zip |
Move object file lists to the Makefile.
(This used to be commit a7e6d2a1832db388fdafa1279f84c9a8bbfc87d6)
Diffstat (limited to 'source4/libnet')
-rw-r--r-- | source4/libnet/config.mk | 31 |
1 files changed, 8 insertions, 23 deletions
diff --git a/source4/libnet/config.mk b/source4/libnet/config.mk index c35b7decc4..0dbe981bdd 100644 --- a/source4/libnet/config.mk +++ b/source4/libnet/config.mk @@ -1,30 +1,15 @@ [SUBSYSTEM::LIBSAMBA-NET] PRIVATE_PROTO_HEADER = libnet_proto.h -OBJ_FILES = \ - libnet.o \ - libnet_passwd.o \ - libnet_time.o \ - libnet_rpc.o \ - libnet_join.o \ - libnet_site.o \ - libnet_become_dc.o \ - libnet_unbecome_dc.o \ - libnet_vampire.o \ - libnet_samdump.o \ - libnet_samdump_keytab.o \ - libnet_samsync_ldb.o \ - libnet_user.o \ - libnet_group.o \ - libnet_share.o \ - libnet_lookup.o \ - libnet_domain.o \ - userinfo.o \ - groupinfo.o \ - userman.o \ - groupman.o \ - prereq_domain.o PUBLIC_DEPENDENCIES = CREDENTIALS dcerpc dcerpc_samr RPC_NDR_LSA RPC_NDR_SRVSVC RPC_NDR_DRSUAPI LIBCLI_COMPOSITE LIBCLI_RESOLVE LIBCLI_FINDDCS LIBCLI_CLDAP LIBCLI_FINDDCS gensec_schannel LIBCLI_AUTH LIBNDR SMBPASSWD +LIBSAMBA-NET_OBJ_FILES = $(addprefix libnet/, \ + libnet.o libnet_passwd.o libnet_time.o libnet_rpc.o \ + libnet_join.o libnet_site.o libnet_become_dc.o libnet_unbecome_dc.o \ + libnet_vampire.o libnet_samdump.o libnet_samdump_keytab.o \ + libnet_samsync_ldb.o libnet_user.o libnet_group.o libnet_share.o \ + libnet_lookup.o libnet_domain.o userinfo.o groupinfo.o userman.o \ + groupman.o prereq_domain.o) + PUBLIC_HEADERS += $(addprefix libnet/, libnet.h libnet_join.h libnet_lookup.h libnet_passwd.h \ libnet_rpc.h libnet_share.h libnet_time.h \ libnet_user.h libnet_site.h libnet_vampire.h \ |