19 lines
418 B
Makefile
19 lines
418 B
Makefile
|
|
PROG += sakisafecli
|
|
SRCS += funcs.c sakisafecli.c config.c
|
|
MAN += sakisafecli.1 sakisafeclirc.5
|
|
LDADD += -lssl -lz -lpthread -lnghttp2 -lcurl -lconfig -lcrypto -L/usr/local/lib
|
|
PREFIX = /usr/local
|
|
|
|
# Use libbsd features if wanted
|
|
use-libbsd ?= no
|
|
.if ${use-libbsd} == "yes"
|
|
CFLAGS += -Duse_libbsd
|
|
LDADD += -lbsd
|
|
.endif
|
|
|
|
BINMODE = 755
|
|
BINDIR = $(PREFIX)/bin
|
|
MANDIR = $(PREFIX)/man/man
|
|
|
|
.include <bsd.prog.mk>
|