diff options
author | Lars Roland <Lars.Roland@gmx.net> | 2005-05-03 01:03:33 +0000 |
---|---|---|
committer | Lars Roland <Lars.Roland@gmx.net> | 2005-05-03 01:03:33 +0000 |
commit | 5bb4e926aa2948cada36d9f74cd33b8ca75ec56f (patch) | |
tree | 9f5e9d23548f0c0df0c94af1b949977b91b19069 /doc | |
parent | cca89430e4ab659e5ed78baeaa258aa3166dba80 (diff) | |
download | wireshark-5bb4e926aa2948cada36d9f74cd33b8ca75ec56f.tar.gz wireshark-5bb4e926aa2948cada36d9f74cd33b8ca75ec56f.tar.bz2 wireshark-5bb4e926aa2948cada36d9f74cd33b8ca75ec56f.zip |
add the new target "install-plugins" to nmake makefile
in the plugins subdirectory. This target will copy all plugins to plugins/$(VERSION), thus (t)ethereal will
find and load the plugins when called from within the source tree.
call this target from the main nmake makefile after
installing other dependencies. call it from the nmake makefile
in the doc subdirectory before calling "tethereal -G".
This way "tethereal -G" will recognize the filterable
fields from the plugins, too.
svn path=/trunk/; revision=14284
Diffstat (limited to 'doc')
-rw-r--r-- | doc/Makefile.nmake | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/Makefile.nmake b/doc/Makefile.nmake index bffa23df5f..7337a3ad3a 100644 --- a/doc/Makefile.nmake +++ b/doc/Makefile.nmake @@ -86,6 +86,9 @@ ethereal-filter.pod: ethereal-filter.pod.template ../tethereal.exe xcopy wiretap\wiretap-$(WTAP_VERSION).dll . /d /y !IFDEF ENABLE_LIBETHEREAL xcopy epan\libethereal.dll . /d /y + cd plugins + $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake install-plugins + cd .. !ENDIF tethereal.exe -G | $(PERL) doc\dfilter2pod.pl doc\ethereal-filter.pod.template > doc\ethereal-filter.pod cd doc |