diff options
author | Gerald Carter <jerry@samba.org> | 2000-12-06 18:24:10 +0000 |
---|---|---|
committer | Gerald Carter <jerry@samba.org> | 2000-12-06 18:24:10 +0000 |
commit | e899f04a6859bc65ae3327563a5b7706ce972008 (patch) | |
tree | f3e6f619a64d99cac2400659a2c6d0150aab0d14 /source3 | |
parent | c09b1d19f881d60b7594fe8f5479580ffb573041 (diff) | |
download | samba-e899f04a6859bc65ae3327563a5b7706ce972008.tar.gz samba-e899f04a6859bc65ae3327563a5b7706ce972008.tar.bz2 samba-e899f04a6859bc65ae3327563a5b7706ce972008.zip |
update for new pdbedit tool (code from Simo)
--jerry
(This used to be commit 3d0ecea18d52b7287beede5687c26536413440eb)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/Makefile.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in index c992dd8675..b56ea8c173 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -85,7 +85,7 @@ SPROGS = bin/smbd bin/nmbd bin/swat PROGS1 = bin/smbclient bin/smbspool bin/testparm bin/testprns bin/smbstatus bin/smbcontrol @RUNPROG@ PROGS2 = bin/smbpasswd bin/make_smbcodepage bin/make_unicodemap bin/rpcclient @WRAP@ @WRAP32@ MPROGS = @MPROGS@ -PROGS = $(PROGS1) $(PROGS2) $(MPROGS) bin/nmblookup bin/make_printerdef +PROGS = $(PROGS1) $(PROGS2) $(MPROGS) bin/nmblookup bin/make_printerdef bin/pdbedit SCRIPTS = $(srcdir)/script/smbtar $(srcdir)/script/addtosmbpass $(srcdir)/script/convert_smbpasswd @@ -246,7 +246,7 @@ SMBPASSWD_OBJ = utils/smbpasswd.o lib/msrpc-client.o $(PARAM_OBJ) \ $(LIBSMB_OBJ) $(PASSDB_OBJ) \ $(UBIQX_OBJ) $(RPC_CLIENT_OBJ) $(RPC_PARSE_OBJ) $(LIB_OBJ) -TDBEDIT_OBJ = utils/tdbedit.o $(PARAM_OBJ) $(LIBSMB_OBJ) $(PASSDB_OBJ) \ +PDBEDIT_OBJ = utils/pdbedit.o $(PARAM_OBJ) $(LIBSMB_OBJ) $(PASSDB_OBJ) \ $(UBIQX_OBJ) $(LIB_OBJ) RPCCLIENT_OBJ1 = rpcclient/rpcclient.o \ @@ -502,9 +502,9 @@ bin/smbpasswd: $(SMBPASSWD_OBJ) bin/.dummy @echo Linking $@ @$(CC) $(FLAGS) -o $@ $(SMBPASSWD_OBJ) $(LDFLAGS) $(LIBS) -bin/tdbedit: $(TDBEDIT_OBJ) bin/.dummy +bin/pdbedit: $(PDBEDIT_OBJ) bin/.dummy @echo Linking $@ - @$(CC) $(FLAGS) -o $@ $(TDBEDIT_OBJ) $(LDFLAGS) $(LIBS) + @$(CC) $(FLAGS) -o $@ $(PDBEDIT_OBJ) $(LDFLAGS) $(LIBS) bin/make_smbcodepage: $(MAKE_SMBCODEPAGE_OBJ) bin/.dummy @echo Linking $@ |