forked from geany/geany-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.waf
36 lines (24 loc) · 912 Bytes
/
README.waf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
You can use Waf (http://code.google.com/p/waf/) to build
the Geany plugins in this repository.
Usage:
./waf configure
./waf build
./waf install
This will configure, build and install most of the available plugins.
To exclude some plugins, ./waf configure accepts the option "--enable-plugins"
which takes a comma-separated list of plugins to compile, e.g.
./waf configure --enable-plugins=geanysendmail,spellcheck
Similarly you can also disable certain plugins from the list with
./waf configure --skip-plugins=geanydoc,geanyvc
To update the language catalogues of plugins with enabled I18n support, run:
./waf updatepo
For more configure options, run
./waf configure --help
For convenience, running './waf configure' will create a simple Makefile
as a wrapper for './waf [options]'.
Currently, the following make targets are available:
make all
make install
make uninstall
make update-po
make clean