1MY_INCLUDE = -I$(top_srcdir)/include -I$(top_srcdir)/lib 2 3AM_CXXFLAGS = -Wall -Weffc++ -Wextra -Wconversion $(MY_INCLUDE) 4 5noinst_LTLIBRARIES = libvector.la 6 7libvector_la_LDFLAGS = -no-undefined 8 9libvector_la_SOURCES = \ 10 bit-vector.cc 11 12noinst_HEADERS = \ 13 pop-count.h \ 14 rank-index.h \ 15 vector.h \ 16 flat-vector.h \ 17 bit-vector.h 18