diff options
Diffstat (limited to 'src/libutil/Makefile')
-rw-r--r-- | src/libutil/Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/libutil/Makefile b/src/libutil/Makefile new file mode 100644 index 000000000000..b604c0078709 --- /dev/null +++ b/src/libutil/Makefile @@ -0,0 +1,15 @@ +LIBS += libutil + +libutil_NAME = libnixutil + +libutil_DIR := $(d) + +libutil_SOURCES = util.cc hash.cc serialise.cc archive.cc xml-writer.cc affinity.cc + +ifeq ($(HAVE_OPENSSL), 1) + libutil_LDFLAGS = $(OPENSSL_LIBS) +else + libutil_SOURCES += md5.c sha1.c sha256.c +endif + +libutil_LIBS = libformat |