18 lines
336 B
Makefile
18 lines
336 B
Makefile
MY_INCLUDE = -I$(top_srcdir)/include -I$(top_srcdir)/lib
|
|
|
|
AM_CXXFLAGS = -Wall -Weffc++ -Wextra -Wconversion $(MY_INCLUDE)
|
|
|
|
noinst_LTLIBRARIES = libvector.la
|
|
|
|
libvector_la_LDFLAGS = -no-undefined
|
|
|
|
libvector_la_SOURCES = \
|
|
bit-vector.cc
|
|
|
|
noinst_HEADERS = \
|
|
pop-count.h \
|
|
rank-index.h \
|
|
vector.h \
|
|
flat-vector.h \
|
|
bit-vector.h
|