1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-20 11:11:03 -04:00
nix/src/libutil/Makefile

16 lines
292 B
Makefile
Raw Normal View History

LIBS += libutil
libutil_NAME = libnixutil
libutil_DIR := $(d)
libutil_SOURCES = util.cc hash.cc serialise.cc archive.cc xml-writer.cc affinity.cc
2013-11-22 14:30:24 -05:00
ifeq ($(HAVE_OPENSSL), 1)
2013-11-22 15:56:58 -05:00
libutil_LDFLAGS = $(OPENSSL_LIBS)
2013-11-22 14:30:24 -05:00
else
2013-11-22 15:56:58 -05:00
libutil_SOURCES += md5.c sha1.c sha256.c
endif
libutil_LIBS = libformat