gmid/have/Makefile
Omar Polo 0b62f4842d drop landlock/seccomp and capsicum support
it reached a point where this stuff is not maintenable.  I'd like
to move forward with gmid, but the restriction of capsicum and the
linux environment at large that make landlock unusable (how can you
resolve DNS portably when under landlock?) -and don't get me started
on seccomp- makes it impossible for me to do any work.

So, I prefer removing the crap, resuming working on gmid by cleaning
stuff and consolidating the features, improving various things
etc... and then eventually see how to introduce some sandboxing
again on other systems.  Patches to resume sandboxing are, as always,
welcome!
2023-05-08 10:27:32 +00:00

38 lines
593 B
Makefile

DISTFILES = Makefile \
err.c \
explicit_bzero.c \
freezero.c \
getdtablecount.c \
getdtablesize.c \
getprogname.c \
imsg.c \
libevent.c \
libevent2.c \
libtls.c \
memmem.c \
noop.c \
openssl.c \
pr_set_name.c \
program_invocation_short_name.c \
queue_h.c \
reallocarray.c \
recallocarray.c \
setproctitle.c \
setresgid.c \
setresuid.c \
strlcat.c \
strlcpy.c \
strtonum.c \
tree_h.c \
vasprintf.c
all:
false
dist: ${DISTFILES}
mkdir -p ${DESTDIR}/
${INSTALL} -m 0644 ${DISTFILES} ${DESTDIR}/
.PHONY: all dist
include ../Makefile.local