blob: 88d43f0aeb62c718de5bbf9d43567f1b1bc1ac67 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
LIBS += libutil
libutil_DIR := $(d)
libutil_SOURCES = util.cc hash.cc serialise.cc archive.cc xml-writer.cc affinity.cc
ifneq ($(HAVE_OPENSSL), 1)
libutil_SOURCES += md5.c sha1.c sha256.c
endif
libutil_LIBS = src/boost/format/libformat
|