diff -r 844f014409ff -r be88e543c8ff Makefile --- a/Makefile Sun Feb 22 07:53:34 2009 +0200 +++ b/Makefile Sun Feb 22 08:21:22 2009 +0200 @@ -33,6 +33,7 @@ CORE_OBJS = obj/error.o SOCK_OBJS = obj/sock.o obj/sock_tcp.o SOCK_GNUTLS_OBJS = obj/sock_gnutls.o +LINEPROTO_OBJS = obj/line_proto.o # XXX: not yet there #CORE_OBJS = obj/lib/log.o obj/lib/signals.o @@ -41,7 +42,7 @@ all: ${BIN_PATHS} # binaries -bin/nexus: ${CORE_OBJS} ${SOCK_OBJS} ${SOCK_GNUTLS_OBJS} +bin/nexus: ${CORE_OBJS} ${SOCK_OBJS} ${SOCK_GNUTLS_OBJS} ${LINEPROTO_OBJS} # computed CFLAGS = ${MODE_CFLAGS} ${FIXED_CFLAGS} ${LIBEVENT_CFLAGS} ${GNUTLS_CFLAGS}