aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2005-07-25 18:27:35 +0000
committerUlf Lamping <ulf.lamping@web.de>2005-07-25 18:27:35 +0000
commitcb62ed9cea3c7ff8490c8773018a1be4595801d5 (patch)
tree2ebfe4d5f897f16798b32a4e7f583b232222f46a /doc
parentc64b5cc16675547a0539e54edde2c4aa5a657770 (diff)
from Thomas Boehne: update README's to reflect latest changes
svn path=/trunk/; revision=15059
Diffstat (limited to 'doc')
-rw-r--r--doc/README.plugins11
1 files changed, 8 insertions, 3 deletions
diff --git a/doc/README.plugins b/doc/README.plugins
index 6b79a3e26d..b8442f6508 100644
--- a/doc/README.plugins
+++ b/doc/README.plugins
@@ -182,14 +182,20 @@ The plugins directory contains a Makefile.am.
You need to change the SUBDIRS directive to reflect the addition of
your plugin:
-SUBDIRS = gryphon mgcp xxx
+SUBDIRS = \
+ gryphon \
+ mgcp \
+ xxx
4.5 Changes to plugins/Makefile.nmake
To the Makefile.nmake you need to add your plugin to the all: rule
-all: plugin_api.obj gryphon mgcp xxx
+all: \
+ gryphon \
+ mgcp \
+ xxx
then add a rule for your plugin:
@@ -202,7 +208,6 @@ and finally add to the clean rule support for cleaning up after your
plugin:
clean:
- rm -f plugin_api.obj
cd gryphon
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
cd ../mgcp