From 27ddb9e7fab53e167b873f971f16aedf5ece17a2 Mon Sep 17 00:00:00 2001 From: Omar Polo Date: Tue, 30 Apr 2024 11:20:56 +0000 Subject: [PATCH] fix dist tarball generation --- Makefile.am | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index b7767aa..8f5f79d 100644 --- a/Makefile.am +++ b/Makefile.am @@ -6,11 +6,17 @@ LDADD = $(LIBOBJS) dist_man5_MANS = table-postgres.5 +EXTRA_DIST = README.md compat.h config.h.in dict.h log.h \ + table_stdio.h util.h + smtpdir = ${prefix}/libexec/smtpd install-exec-local: $(noinst_PROGRAMS) $(MKDIR_P) $(DESTDIR)$(smtpdir) $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $(noinst_PROGRAMS) $(DESTDIR)$(smtpdir) -README.md: table-postgres.5 +uninstall-local: + rm $(DESTDIR)$(smtpdir)/$(noinst_PROGRAMS) + +regen-readme: mandoc -Tmarkdown -l table-postgres.5 > README.md