Introduction
Introduction Statistics Contact Development Disclaimer Help
Makefile - irc - A minimalistic IRC client, forked from https://c9x.me/irc/
git clone git://vernunftzentrum.de/irc.git
Log
Files
Refs
README
---
Makefile (241B)
---
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
5
6 all: ${BIN}
7
8 clean:
9 rm -f ${BIN} *.o
10
11 .PHONY: all clean
You are viewing proxied material from vernunftzentrum.de. 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.