mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-11 00:36:20 +02:00
15 lines
264 B
Makefile
15 lines
264 B
Makefile
LIBS += libutil
|
|
|
|
libutil_NAME = libnixutil
|
|
|
|
libutil_DIR := $(d)
|
|
|
|
libutil_SOURCES := $(wildcard $(d)/*.cc)
|
|
|
|
ifeq ($(HAVE_OPENSSL), 1)
|
|
libutil_LDFLAGS = $(OPENSSL_LIBS)
|
|
else
|
|
libutil_SOURCES += $(d)/md5.c $(d)/sha1.c $(d)/sha256.c
|
|
endif
|
|
|
|
libutil_LIBS = libformat
|