diff options
author | Andrew Tridgell <tridge@samba.org> | 2001-07-25 01:41:45 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2001-07-25 01:41:45 +0000 |
commit | e9968db4f365b922273ae8c1e0b01a005dd5871e (patch) | |
tree | 282348cf38fe2c9812f74672bf3619163eb293fb | |
parent | bec370b07916fb2f601f505d2482beb5c284b472 (diff) | |
download | samba-e9968db4f365b922273ae8c1e0b01a005dd5871e.tar.gz samba-e9968db4f365b922273ae8c1e0b01a005dd5871e.tar.bz2 samba-e9968db4f365b922273ae8c1e0b01a005dd5871e.zip |
build smbtree by default. It's a very useful utility.
(This used to be commit e2ab5e09d0721114f441d7227d4a5be21e8a59c6)
-rw-r--r-- | source3/Makefile.in | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in index b7e15b119a..043ce839b0 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -82,7 +82,7 @@ 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@ +PROGS1 = bin/smbclient bin/smbspool bin/testparm bin/testprns bin/smbstatus bin/smbcontrol bin/smbtree @RUNPROG@ @WINBIND_TARGETS@ PROGS2 = bin/smbpasswd bin/rpcclient bin/smbcacls @WRAP@ @WRAP32@ @PAM_MOD@ MPROGS = @MPROGS@ PROGS = $(PROGS1) $(PROGS2) $(MPROGS) bin/nmblookup bin/make_printerdef bin/pdbedit @@ -240,6 +240,9 @@ STATUS_OBJ = utils/status.o $(LOCKING_OBJ) $(PARAM_OBJ) \ SMBCONTROL_OBJ = utils/smbcontrol.o $(LOCKING_OBJ) $(PARAM_OBJ) \ $(UBIQX_OBJ) $(PROFILE_OBJ) $(LIB_OBJ) +SMBTREE_OBJ = utils/smbtree.o $(LOCKING_OBJ) $(PARAM_OBJ) \ + $(UBIQX_OBJ) $(PROFILE_OBJ) $(LIB_OBJ) $(LIBSMB_OBJ) + TESTPARM_OBJ = utils/testparm.o \ $(PARAM_OBJ) $(UBIQX_OBJ) $(LIB_OBJ) @@ -522,6 +525,10 @@ bin/smbcontrol: $(SMBCONTROL_OBJ) bin/.dummy @echo Linking $@ @$(CC) $(FLAGS) -o $@ $(SMBCONTROL_OBJ) $(LDFLAGS) $(LIBS) +bin/smbtree: $(SMBTREE_OBJ) bin/.dummy + @echo Linking $@ + @$(CC) $(FLAGS) -o $@ $(SMBTREE_OBJ) $(LDFLAGS) $(LIBS) + bin/smbpasswd: $(SMBPASSWD_OBJ) bin/.dummy @echo Linking $@ @$(CC) $(FLAGS) -o $@ $(SMBPASSWD_OBJ) $(LDFLAGS) $(LIBS) |