Introduction
Introduction Statistics Contact Development Disclaimer Help
Makefile - irc - IRC client based on c9x.me/irc client
git clone git://git.codemadness.org/irc
Log
Files
Refs
README
LICENSE
---
Makefile (247B)
---
1 BIN = irc
2
3 CFLAGS = -std=c99 -Os -D_POSIX_C_SOURCE=201112 -D_GNU_SOURCE -D_XOPEN_CU…
4 LDFLAGS = -lncursesw -lssl -lcrypto -ltls
5
6 all: ${BIN}
7
8 clean:
9 rm -f ${BIN} *.o
10
11 .PHONY: all clean
You are viewing proxied material from codemadness.org. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.