being unreadable. Hopefully this makes the thing more clear and readable. Some improvements could be done to the upload_file_* thing. As there's really no need to pass argc and argv to those. And passing argv to that is an overkill Solution: To create a const char* variable and save the filename in there and pass that to the functions. Simple as that. But i'm a lazy motherfucker and I'm tired. Boss.
18 lines
394 B
Makefile
18 lines
394 B
Makefile
PROG += sakisafecli
|
|
SRCS += funcs.c sakisafecli.c config.c
|
|
MAN += sakisafecli.1 sakisafeclirc.5
|
|
LDADD += -lpthread -lcurl -lconfig -L/usr/local/lib -fPIC
|
|
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>
|