From: Michael Orlitzky Date: Mon, 9 Oct 2023 12:49:15 +0000 (-0400) Subject: Makefile.am: add CLEANFILES variable so that "make clean" works X-Git-Url: http://gitweb.michael.orlitzky.com/?a=commitdiff_plain;h=4db9359ae870eaec1d5ef5e0997232f1a8455fa3;p=charm-bypass.git 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. --- 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