From 32f438af6b91cc2bf471b32e3ef4bcd0e24555e7 Mon Sep 17 00:00:00 2001 From: Polymath Date: Sun, 6 Oct 2024 22:12:44 +0200 Subject: Welcoming bot for xmpp --- Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Makefile (limited to 'Makefile') 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 -- cgit v1.2.3