Rename Makefile -> local.mk

This commit is contained in:
Eelco Dolstra 2014-01-30 12:11:06 +01:00
parent 4a2ec9c659
commit e0234dfddc
17 changed files with 16 additions and 16 deletions

15
src/libutil/local.mk Normal file
View file

@ -0,0 +1,15 @@
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