X-Git-Url: https://git.distorted.org.uk/~mdw/autoys/blobdiff_plain/f4681f118a706c5ee0645eaf251c714b0fe1540e..86e491b0afbcd651478d6d9fb1f85ebef20562d6:/coverart/Makefile.am diff --git a/coverart/Makefile.am b/coverart/Makefile.am new file mode 100644 index 0000000..350cc25 --- /dev/null +++ b/coverart/Makefile.am @@ -0,0 +1,45 @@ +### -*-makefile-*- +### +### Build script for the coverart selector +### +### (c) 2016 Mark Wooding +### + +###----- Licensing notice --------------------------------------------------- +### +### This file is part of the `autoys' audio tools collection. +### +### `autoys' is free software; you can redistribute it and/or modify +### it under the terms of the GNU General Public License as published by +### the Free Software Foundation; either version 2 of the License, or +### (at your option) any later version. +### +### `autoys' is distributed in the hope that it will be useful, +### but WITHOUT ANY WARRANTY; without even the implied warranty of +### MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +### GNU General Public License for more details. +### +### You should have received a copy of the GNU General Public License +### along with `autoys'; if not, write to the Free Software Foundation, +### Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +include $(top_srcdir)/vars.am + +###-------------------------------------------------------------------------- +### The gremlin. + +if HAVE_PYTHON + +bin_SCRIPTS += coverart +CLEANFILES += coverart +EXTRA_DIST += coverart.in + +coverart: coverart.in + $(SUBST) $(srcdir)/coverart.in >$@.new $(SUBSTITUTIONS) && \ + chmod +x $@.new && mv $@.new $@ + +##dist_man_MANS += coverart.1 + +endif + +###----- That's all, folks --------------------------------------------------