gmid/compat/Makefile

36 lines
570 B
Makefile
Raw Normal View History

2022-10-31 23:53:16 +01:00
DISTFILES = Makefile \
err.c \
explicit_bzero.c \
freezero.c \
getdtablecount.c \
getdtablesize.c \
getprogname.c \
imsg-buffer.c \
imsg.c \
imsg.h \
2022-10-31 23:53:16 +01:00
memmem.c \
2022-10-31 23:53:16 +01:00
queue.h \
reallocarray.c \
recallocarray.c \
setproctitle.c \
setresgid.c \
setresuid.c \
2022-10-31 23:53:16 +01:00
strlcat.c \
strlcpy.c \
strtonum.c \
tree.h \
vasprintf.c \
vis.c
2022-10-31 23:53:16 +01:00
all:
false
dist: ${DISTFILES}
mkdir -p ${DESTDIR}/
${INSTALL} -m 0644 ${DISTFILES} ${DESTDIR}/
mkdir -p ${DESTDIR}/vis
${INSTALL} -m 0644 vis/vis.h ${DESTDIR}/vis
2022-10-31 23:53:16 +01:00
.PHONY: all dist
include ../config.mk