diff options
author | Andrew Tridgell <tridge@samba.org> | 2003-11-23 13:44:19 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2003-11-23 13:44:19 +0000 |
commit | 3d0e6b3835379d545189563ce25ffe37ed340703 (patch) | |
tree | 6941a15bff5d7132879907999bdd4ce5938c5b2a /source4/Makefile.in | |
parent | 66694c571f2fbefda4cb70d944497bd9a9d45a7c (diff) | |
download | samba-3d0e6b3835379d545189563ce25ffe37ed340703.tar.gz samba-3d0e6b3835379d545189563ce25ffe37ed340703.tar.bz2 samba-3d0e6b3835379d545189563ce25ffe37ed340703.zip |
added a tool called 'ndrdump' that allows you to dump NDR data
according to the current IDL taking the data from a file. In
combination with a little hack to ethereal to extract data this is a
quite powerful IDL development tool.
(This used to be commit 229a325c3cf0d4dc1e910ed32e1d7391040aeba1)
Diffstat (limited to 'source4/Makefile.in')
-rw-r--r-- | source4/Makefile.in | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/source4/Makefile.in b/source4/Makefile.in index eec2447f5a..2484b80a0f 100644 --- a/source4/Makefile.in +++ b/source4/Makefile.in @@ -458,6 +458,9 @@ SMBTORTURE_OBJ1 = torture/torture.o torture/torture_util.o torture/nbio.o tortur SMBTORTURE_OBJ = $(SMBTORTURE_OBJ1) \ $(LIBSMB_OBJ) $(LIBDFS_OBJ) $(PARAM_OBJ) $(LIB_OBJ) +NDRDUMP_OBJ = utils/ndrdump.o utils/rewrite.o \ + $(LIBSMB_OBJ) $(LIBDFS_OBJ) $(PARAM_OBJ) $(LIB_OBJ) + MASKTEST_OBJ = torture/masktest.o $(LIBSMB_OBJ) $(PARAM_OBJ) \ $(LIB_OBJ) libcli/raw/clirewrite.o @@ -795,6 +798,10 @@ bin/smbtorture@EXEEXT@: $(SMBTORTURE_OBJ) bin/.dummy @echo Linking $@ @$(CC) $(FLAGS) -o $@ $(SMBTORTURE_OBJ) $(LDFLAGS) $(LIBS) +bin/ndrdump@EXEEXT@: $(NDRDUMP_OBJ) bin/.dummy + @echo Linking $@ + @$(CC) $(FLAGS) -o $@ $(NDRDUMP_OBJ) $(LDFLAGS) $(LIBS) + bin/gentest@EXEEXT@: $(GENTEST_OBJ) bin/.dummy @echo Linking $@ @$(CC) $(FLAGS) -o $@ $(GENTEST_OBJ) $(LDFLAGS) $(LIBS) |