diff options
Diffstat (limited to '')
-rw-r--r-- | qpb/subdir.am | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/qpb/subdir.am b/qpb/subdir.am new file mode 100644 index 0000000..21aa84d --- /dev/null +++ b/qpb/subdir.am @@ -0,0 +1,31 @@ +if HAVE_PROTOBUF +lib_LTLIBRARIES += qpb/libfrr_pb.la +endif + +qpb_libfrr_pb_la_CPPFLAGS = $(AM_CPPFLAGS) $(PROTOBUF_C_CFLAGS) +qpb_libfrr_pb_la_LIBADD = $(PROTOBUF_C_LIBS) +qpb_libfrr_pb_la_LDFLAGS = $(LIB_LDFLAGS) -version-info 0:0:0 + +qpb_libfrr_pb_la_SOURCES = \ + qpb/qpb.c \ + qpb/qpb_allocator.c \ + # end + +if HAVE_PROTOBUF +nodist_qpb_libfrr_pb_la_SOURCES = \ + qpb/qpb.pb-c.c \ + # end +endif + +noinst_HEADERS += \ + qpb/linear_allocator.h \ + qpb/qpb.h \ + qpb/qpb_allocator.h \ + # end + +CLEANFILES += \ + qpb/qpb.pb-c.c \ + qpb/qpb.pb-c.h \ + # end + +EXTRA_DIST += qpb/qpb.proto |