diff options
author | Polymath <polymath@hax.al> | 2024-10-06 20:12:44 +0000 |
---|---|---|
committer | Polymath <polymath@hax.al> | 2024-10-06 20:12:44 +0000 |
commit | 32f438af6b91cc2bf471b32e3ef4bcd0e24555e7 (patch) | |
tree | f730dfac0fb3525e230e1b83698a59d1e5baad11 /Makefile | |
parent | Initial commit (diff) | |
download | xmpp_bot-32f438af6b91cc2bf471b32e3ef4bcd0e24555e7.tar.gz xmpp_bot-32f438af6b91cc2bf471b32e3ef4bcd0e24555e7.zip |
Welcoming bot for xmpp
Diffstat (limited to '')
-rw-r--r-- | Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..a3d2f9d --- /dev/null +++ b/Makefile @@ -0,0 +1,9 @@ +CC = gcc +CFLAGS = -Wall -Wextra $(shell pkg-config --cflags libstrophe) +LDFLAGS = $(shell pkg-config --libs libstrophe) + +xmpp_bot: xmpp_bot.c + $(CC) $(CFLAGS) -o xmpp_bot xmpp_bot.c $(LDFLAGS) + +clean: + rm -f xmpp_bot |