From c9332d07f3f2fa16de73a4a51ecf0fce423d1f82 Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Fri, 14 Aug 2020 12:15:03 -0400 Subject: Add spawnd skeleton --- Makefile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..46ab385 --- /dev/null +++ b/Makefile @@ -0,0 +1,15 @@ +CFLAGS += -std=c99 -Wall -Wextra -Wpedantic + +-include config.mk + +OBJS += daemon.o + +all: spawn spawnd + +spawnd: ${OBJS} + ${CC} ${LDFLAGS} ${OBJS} ${LDLIBS} -o $@ + +${OBJS}: daemon.h + +clean: + rm -f spawn spawnd ${OBJS} -- cgit 1.4.1 6554f11ad76b5fa'>this commit IRC bouncer
about summary refs log tree commit diff
path: root/rc.pounce (unfollow)
Commit message (Expand)Author
2019-10-26Set AWAY when no clients are connectedJune McEnroe
2019-10-26Add flags to request TOPIC and NAMES on client connectJune McEnroe
2019-10-26OopsJune McEnroe
2019-10-26Disconnect client on unknown commandJune McEnroe
2019-10-26Allow reading sensitive information from filesJune McEnroe
2019-10-26Add rc scriptJune McEnroe
2019-10-25Add install and uninstall targetsJune McEnroe
2019-10-25Expand documentationJune McEnroe
2019-10-25Add AGPLv3 notice on client registrationJune McEnroe
2019-10-25Rename project pounceJune McEnroe