1# Copyright 1999-2000 Tom Gilbert <tom@linuxbrit.co.uk,
2#                                   gilbertt@linuxbrit.co.uk,
3#                                   scrot_sucks@linuxbrit.co.uk>
4# Copyright 2015-2019 Joao Eriberto Mota Filho <eriberto@eriberto.pro.br>
5# Copyright 2019-2021 Daniel T. Borelli <danieltborelli@gmail.com>
6# Copyright 2021      Guilherme Janczak <guilherme.janczak@yandex.com>
7#
8# Permission is hereby granted, free of charge, to any person obtaining a copy
9# of this software and associated documentation files (the "Software"), to
10# deal in the Software without restriction, including without limitation the
11# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
12# sell copies of the Software, and to permit persons to whom the Software is
13# furnished to do so, subject to the following conditions:
14#
15# The above copyright notice and this permission notice shall be included in
16# all copies of the Software and its documentation and acknowledgment shall be
17# given in the documentation and software packages that this Software was
18# used.
19#
20# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
23# THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
24# IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
25# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
26
27
28## Process this file with automake to produce Makefile.in
29
30AUTOMAKE_OPTIONS = 1.10 foreign
31
32# A list of all the files in the current directory which can be regenerated
33MAINTAINERCLEANFILES = Makefile.in
34
35man_MANS = man/scrot.1
36
37docs_DATA = README.md AUTHORS ChangeLog doc/scrot.png
38docsdir = $(prefix)/share/doc/scrot
39
40EXTRA_DIST = man/scrot.1 $(docs_DATA)
41
42SUBDIRS = src
43
44distclean-local:
45	-rm -rf autom4te.cache/
46
47	-rm -f *~ \
48	src/*~ \
49	aclocal.m4 \
50	compile \
51	configure \
52	depcomp \
53	install-sh \
54	Makefile.in \
55	missing \
56	src/config.h.in \
57	src/Makefile.in \
58	src/scrot_config.h
59