diff options
author | Omar Polo <op@omarpolo.com> | 2022-10-31 22:53:16 +0000 |
---|---|---|
committer | Omar Polo <op@omarpolo.com> | 2022-10-31 22:53:16 +0000 |
commit | 4b93be289bc141a15484e782c85020b62b878ec2 (patch) | |
tree | a953b6d70de69dc26894d1130edc7d7323c8c3dd /have | |
parent | 21cf735f37d3b5792112e02b58735d69ce18998b (diff) |
rework `make dist'
Diffstat (limited to 'have')
-rw-r--r-- | have/Makefile | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/have/Makefile b/have/Makefile new file mode 100644 index 0000000..cdd0fec --- /dev/null +++ b/have/Makefile @@ -0,0 +1,35 @@ +DISTFILES = Makefile \ + err.c \ + explicit_bzero.c \ + freezero.c \ + getdtablecount.c \ + getdtablesize.c \ + getprogname.c \ + imsg.c \ + landlock.c \ + libevent.c \ + libevent2.c \ + libtls.c \ + noop.c \ + openssl.c \ + pr_set_name.c \ + program_invocation_short_name.c \ + queue_h.c \ + reallocarray.c \ + recallocarray.c \ + setproctitle.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 |