Expand the range where uninitialized warnings are ignored
[folly.git] / folly / Makefile.am
index 49573d0d909c01939a99d59838447005e32c9a00..77967ebb29120593696c09e41837e7a2071f98da 100644 (file)
@@ -66,6 +66,8 @@ nobase_follyinclude_HEADERS = \
        SmallLocks.h \
        small_vector.h \
        sorted_vector_types.h \
+       SpookyHashV1.h \
+       SpookyHashV2.h \
        StlAllocator.h \
        String.h \
        String-inl.h \
@@ -105,17 +107,23 @@ libfolly_la_SOURCES = \
        ThreadCachedArena.cpp \
        Format.cpp \
        FormatTables.cpp \
-       String.cpp
+       String.cpp \
+       Bits.cpp \
+       SpookyHashV1.cpp \
+       SpookyHashV2.cpp
 
-libfolly_la_LIBADD = $(BOOST_THREAD_LIBS) -lpthread
+libfolly_la_LIBADD = $(BOOST_THREAD_LIB) -lpthread
 
 FingerprintTables.cpp: generate_fingerprint_tables
        ./generate_fingerprint_tables
 
 libfollyfingerprint_la_SOURCES = \
        FingerprintTables.cpp
+libfollyfingerprint_la_LIBADD = libfolly.la
 
 libfollybenchmark_la_SOURCES = Benchmark.cpp
-libfollybenchmark_la_LIBADD = -lboost_regex -lpthread -lrt
+libfollybenchmark_la_LIBADD = $(BOOST_REGEX_LIB) -lrt libfolly.la
 
 libfollytimeout_queue_la_SOURCES = TimeoutQueue.cpp
+libfollytimeout_queue_la_LIBADD = libfolly.la
+