From: Michal 'vorner' Vaner Date: Mon, 11 Feb 2013 09:17:20 +0000 (+0100) Subject: [1924] Fix makefile X-Git-Tag: bind10-1.1.0beta1-release~104^2~4 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6eb4e61e5886a972750136b425404e17dbd476ea;p=thirdparty%2Fkea.git [1924] Fix makefile The .cc file must be in _SOURCES, not in nodist_SOURCES. This one is not generated. --- diff --git a/src/lib/cc/Makefile.am b/src/lib/cc/Makefile.am index b3475d8ca7..caa5cc2b47 100644 --- a/src/lib/cc/Makefile.am +++ b/src/lib/cc/Makefile.am @@ -24,8 +24,9 @@ lib_LTLIBRARIES = libb10-cc.la libb10_cc_la_SOURCES = data.cc data.h session.cc session.h libb10_cc_la_SOURCES += logger.cc logger.h nodist_libb10_cc_la_SOURCES = cc_messages.cc cc_messages.h +libb10_cc_la_SOURCES += proto_defs.cc +nodist_libb10_cc_la_SOURCES += proto_defs.h libb10_cc_la_LIBADD = $(top_builddir)/src/lib/log/libb10-log.la -nodist_libb10_cc_la_SOURCES += proto_defs.cc proto_defs.h CLEANFILES = *.gcno *.gcda session_config.h cc_messages.cc cc_messages.h