1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
|
bin_PROGRAMS=sbnc
sbnc_SOURCES=Banlist.cpp \
Cache.cpp \
Config.cpp \
Core.cpp \
Log.cpp \
User.cpp \
Channel.cpp \
ClientConnection.cpp \
ClientConnectionMultiplexer.cpp \
Connection.cpp \
DnsEvents.cpp \
DnsSocket.cpp \
FIFOBuffer.cpp \
FloodControl.cpp \
IdentSupport.cpp \
IRCConnection.cpp \
Keyring.cpp \
Module.cpp \
Nick.cpp \
Queue.cpp \
sbnc.cpp \
Timer.cpp \
TrafficStats.cpp \
utility.cpp \
Banlist.h \
Config.h \
Core.h \
Log.h \
User.h \
Cache.h \
Channel.h \
ClientConnection.h \
ClientConnectionMultiplexer.h \
Connection.h \
DnsEvents.h \
DnsSocket.h \
FIFOBuffer.h \
FloodControl.h \
Hashtable.h \
IdentSupport.h \
IRCConnection.h \
Keyring.h \
List.h \
Listener.h \
ModuleFar.h \
Module.h \
Nick.h \
Object.h \
Result.h \
Queue.h \
sbnc.h \
SocketEvents.h \
StdAfx.h \
Timer.h \
TrafficStats.h \
unix.h \
utility.h \
Vector.h \
win32.h
sbnc_LDADD=${LIBCARES} ../third-party/md5/libmd5.la ../third-party/mmatch/libmmatch.la ${LIBSNPRINTF} ${LIBLTDL}
sbnc_LDFLAGS=-export-dynamic
AM_CFLAGS=-DSBNC ${LTDLINCL} ${CARESINCL} ${SNPRINTFINCL} -I../third-party/mmatch
AM_CXXFLAGS=-DSBNC ${LTDLINCL} ${CARESINCL} ${SNPRINTFINCL} -I../third-party/mmatch
|