Build purple by default

This commit is contained in:
Jaidyn Ann 2021-07-07 15:08:41 -05:00
parent d05793bbf9
commit 4b372238cc
2 changed files with 5 additions and 7 deletions

View File

@ -10,16 +10,14 @@ You can make Cardie and its protocols with:
`$ make` `$ make`
Or one-by-one:
`$ make libs; make app; make protocols` `$ make libs; make app; make protocols`
Cardie itself requires the `expat_devel` package, the XMPP protocol requires Cardie itself requires the `expat_devel` package, the XMPP protocol requires
`gloox_devel`, and the (provisional) IRC protocol requires `libircclient_devel`, `gloox_devel`, and the (provisional) IRC protocol requires `libircclient_devel`,
`openssl_devel`, and `zlib_devel`. `openssl_devel`, and `zlib_devel`. The (experimental) libpurple add-on requires
`libpurple_devel` and `glib2_devel`.
The (experimental) libpurple add-on requires `libpurple_devel` and
`glib2_devel`. You have to build this one manually:
`$ make -f protocols/purple/Makefile`
## License ## License
Cardie itself is under the MIT license, but licenses vary for the included Cardie itself is under the MIT license, but licenses vary for the included

View File

@ -9,6 +9,6 @@ purple:
xmpp: xmpp:
$(MAKE) -f protocols/xmpp/Makefile $(MAKE) -f protocols/xmpp/Makefile
all: xmpp irc all: irc xmpp purple
default: all default: all