From 4db9359ae870eaec1d5ef5e0997232f1a8455fa3 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Mon, 9 Oct 2023 08:49:15 -0400 Subject: [PATCH] Makefile.am: add CLEANFILES variable so that "make clean" works Use the variable CLEANFILES to indicate which files are produced by the build process. Otherwise, automake doesn't consider our custom rules. --- Makefile.am | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile.am b/Makefile.am index 3995fe6..5b92388 100644 --- a/Makefile.am +++ b/Makefile.am @@ -22,3 +22,7 @@ index.html: src/index.html.in day.svg tickettext.base64 # If you really want to, we support installing index.html # to (say) /usr/share/charm-bypass/index.html. dist_pkgdata_DATA = index.html + +# Automake doesn't understand our wacky build process so we have to +# tell it which files are produced by running "make" +CLEANFILES = $(dist_pkgdata_DATA) tickettext.base64 day.svg -- 2.43.2