diff -r 20ce0029e4a0 -r 5001564ac5fc Makefile --- a/Makefile Sat Feb 28 20:23:37 2009 +0200 +++ b/Makefile Sat Feb 28 21:39:15 2009 +0200 @@ -34,6 +34,7 @@ SOCK_OBJS = obj/sock.o obj/sock_tcp.o SOCK_GNUTLS_OBJS = obj/sock_gnutls.o LINEPROTO_OBJS = obj/line_proto.o +IRC_OBJS = obj/irc_line.o # XXX: not yet there #CORE_OBJS = obj/lib/log.o obj/lib/signals.o @@ -42,7 +43,7 @@ all: ${BIN_PATHS} # binaries -bin/nexus: ${CORE_OBJS} ${SOCK_OBJS} ${SOCK_GNUTLS_OBJS} ${LINEPROTO_OBJS} +bin/nexus: ${CORE_OBJS} ${SOCK_OBJS} ${SOCK_GNUTLS_OBJS} ${LINEPROTO_OBJS} ${IRC_OBJS} # computed CFLAGS = ${MODE_CFLAGS} ${FIXED_CFLAGS} ${LIBEVENT_CFLAGS} ${GNUTLS_CFLAGS}