From 4b372238cca500e48ddd3d13b6297005b9e641fa Mon Sep 17 00:00:00 2001 From: Jaidyn Ann Date: Wed, 7 Jul 2021 15:08:41 -0500 Subject: [PATCH] Build purple by default --- README.md | 10 ++++------ protocols/Makefile | 2 +- 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index e2663a6..8ed606d 100644 --- a/README.md +++ b/README.md @@ -10,16 +10,14 @@ You can make Cardie and its protocols with: `$ make` +Or one-by-one: + `$ make libs; make app; make protocols` Cardie itself requires the `expat_devel` package, the XMPP protocol requires `gloox_devel`, and the (provisional) IRC protocol requires `libircclient_devel`, -`openssl_devel`, and `zlib_devel`. - -The (experimental) libpurple add-on requires `libpurple_devel` and -`glib2_devel`. You have to build this one manually: - -`$ make -f protocols/purple/Makefile` +`openssl_devel`, and `zlib_devel`. The (experimental) libpurple add-on requires +`libpurple_devel` and `glib2_devel`. ## License Cardie itself is under the MIT license, but licenses vary for the included diff --git a/protocols/Makefile b/protocols/Makefile index e74f33e..d2aee7d 100644 --- a/protocols/Makefile +++ b/protocols/Makefile @@ -9,6 +9,6 @@ purple: xmpp: $(MAKE) -f protocols/xmpp/Makefile -all: xmpp irc +all: irc xmpp purple default: all