summary refs log tree commit diff
path: root/bin/irc/Makefile
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2019-04-27 18:35:52 -0400
committerJune McEnroe <june@causal.agency>2019-04-27 18:35:52 -0400
commitc57db6ee33dcaded55f98e2ea209edbccb4c5ec1 (patch)
tree52d64ebf8fa59093e956fa6a538c22156ff5b125 /bin/irc/Makefile
parentAdd Lightless (diff)
downloadsrc-c57db6ee33dcaded55f98e2ea209edbccb4c5ec1.tar.gz
src-c57db6ee33dcaded55f98e2ea209edbccb4c5ec1.zip
Add IRC relay bot
Diffstat (limited to '')
-rw-r--r--bin/irc/Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/bin/irc/Makefile b/bin/irc/Makefile
new file mode 100644
index 00000000..c909f067
--- /dev/null
+++ b/bin/irc/Makefile
@@ -0,0 +1,13 @@
+LIBRESSL_PREFIX = /usr/local
+
+CFLAGS += -Wall -Wextra -Wpedantic
+CFLAGS += -I$(LIBRESSL_PREFIX)/include
+LDFLAGS += -L$(LIBRESSL_PREFIX)/lib
+LDLIBS = -ltls
+
+-include config.mk
+
+relay:
+
+clean:
+	rm -f relay
f='/src/commit/bin/man1/bit.1?id=fb34d727d81485248be40d5282ae0295636018f4&follow=1'>Simplify and build bitJune McEnroe 2019-05-29Add xx -p optionJune McEnroe 2019-05-27Add FrontierJune McEnroe 2019-05-27Break nicks with ZWNJJune McEnroe 2019-05-26Add DawnJune McEnroe 2019-05-20Declare vasprintf(3) for GNUJune McEnroe 2019-05-20Fix comparison warning in ttpreJune McEnroe 2019-05-20Add AuthorityJune McEnroe 2019-05-19Specify precedence of unary versions of operatorsJune McEnroe 2019-05-18Add compound assignment operators to orderJune McEnroe 2019-05-15Support simple assignment in orderJune McEnroe 2019-05-15Implement sizeof in orderJune McEnroe 2019-05-15Add orderJune McEnroe 2019-05-12Add T suffix in bitJune McEnroe 2019-05-10Highlight yacc and lex files as CJune McEnroe 2019-05-10Use val instead of suboptargJune McEnroe 2019-05-09Add Parable of the SowerJune McEnroe 2019-05-07Add bit without buildJune McEnroe 2019-05-04Fix MANDIR typoJune McEnroe 2019-05-04Move relay to binJune McEnroe