mirror of
https://git.freebsd.org/ports.git
synced 2025-06-03 20:06:29 -04:00
irc directory tree with server, channel and nick name directories. In every directory a FIFO in file and a normal out file is created. The in file is used to communicate with the servers and the out files contain the server messages. For every channel and every nick name there are related in and out files created. This allows IRC communication from command line and adheres to the Unix philosophy. WWW: http://www.suckless.org/wiki/tools/irc/irc_it/ PR: ports/125567 Submitted by: Julien Laffaye <kimelto at gmail.com>
24 lines
685 B
Makefile
24 lines
685 B
Makefile
--- config.mk.orig 2007-07-14 20:39:41.000000000 +0200
|
|
+++ config.mk 2008-07-13 15:38:45.000000000 +0200
|
|
@@ -1,9 +1,9 @@
|
|
# Customize to fit your system
|
|
|
|
# paths
|
|
-PREFIX = /usr/local
|
|
+PREFIX ?= /usr/local
|
|
BINDIR = ${PREFIX}/bin
|
|
-MANDIR = ${PREFIX}/share/man
|
|
+MANDIR = ${PREFIX}/man
|
|
MAN1DIR = ${MANDIR}/man1
|
|
DOCDIR = ${PREFIX}/share/doc/ii
|
|
|
|
@@ -22,6 +22,6 @@
|
|
#CFLAGS = -g ${INCLUDES} -DVERSION=\"${VERSION}\"
|
|
|
|
# compiler
|
|
-CC = cc
|
|
-CFLAGS = -g -O0 -W -Wall ${INCLUDES} -DVERSION=\"${VERSION}\"
|
|
-LDFLAGS = ${LIBS}
|
|
+CC ?= cc
|
|
+CFLAGS += -g -O0 -W -Wall ${INCLUDES} -DVERSION=\"${VERSION}\"
|
|
+LDFLAGS += ${LIBS}
|