summaryrefslogtreecommitdiff
path: root/doc/README.plugins
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2010-04-19 14:38:20 +0000
committerBill Meier <wmeier@newsguy.com>2010-04-19 14:38:20 +0000
commit17b57d46d37583b5bbce1a34e6d6418d5d43a72f (patch)
tree8fb51167ee937ea7e79d273c84ef5abd0b62ca55 /doc/README.plugins
parent6b96494a3d8d2eadd2500c4f803fcd1e08a091c2 (diff)
downloadwireshark-17b57d46d37583b5bbce1a34e6d6418d5d43a72f.tar.gz
Simplify Makefile.nmake so that adding a new plugin to Makefile.nmake
requires only adding the plugin (directory) name to a list of plugins. svn path=/trunk/; revision=32516
Diffstat (limited to 'doc/README.plugins')
-rw-r--r--doc/README.plugins17
1 files changed, 3 insertions, 14 deletions
diff --git a/doc/README.plugins b/doc/README.plugins
index ece47891c3..e9df1858bf 100644
--- a/doc/README.plugins
+++ b/doc/README.plugins
@@ -89,7 +89,6 @@ You will also need to change the following files:
CMakeLists.txt
epan/Makefile.am
Makefile.am
- Makefile.nmake
packaging/nsis/Makefile.nmake
packaging/nsis/wireshark.nsi
plugins/Makefile.am
@@ -116,19 +115,9 @@ SUBDIRS = $(_CUSTOM_SUBDIRS_) \
3.2 Changes to plugins/Makefile.nmake
-To the Makefile.nmake you need to add the following (in
-alphabetical order) for your plugin to the process-plugins: rule
-
- cd xxx
- $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake $(PLUGIN_TARGET)
- cd ..
-
-Then add a copy command to the install-plugins rule:
-
- ...
- xcopy plugins\xxx\*.dll $(INSTALL_DIR)\plugins\$(VERSION) /d
- cd plugins
- if exist Custom.nmake $(MAKE) /$(MAKEFLAGS) -f Custom.nmake install-plugins
+In plugins/Makefile.nmake you need to add to the PLUGINS_LIST
+(in alphabetical order) the name of your dissector (actually:
+the name of the plugins sub-directory which contains your dissector).
3.3 Changes to the top level Makefile.am