Externalize default config file: /conky/conky.conf
[monky] / Makefile.am
1 # Conky, a system monitor, based on torsmo
2 #
3 # Any original torsmo code is licensed under the BSD license
4 #
5 # All code written since the fork of torsmo is licensed under the GPL
6 #
7 # Please see COPYING for details
8 #
9 # Copyright (c) 2004, Hannu Saransaari and Lauri Hakkarainen
10 # Copyright (c) 2005-2007 Brenden Matthews, Philip Kovacs, et. al. (see AUTHORS)
11 # All rights reserved.
12 #
13 # This program is free software: you can redistribute it and/or modify
14 # it under the terms of the GNU General Public License as published by
15 # the Free Software Foundation, either version 3 of the License, or
16 # (at your option) any later version.
17 #
18 # This program is distributed in the hope that it will be useful,
19 # but WITHOUT ANY WARRANTY; without even the implied warranty of
20 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21 # GNU General Public License for more details.
22 # You should have received a copy of the GNU General Public License
23 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
24 #
25 # $Id$
26
27 SUBDIRS =                                       \
28         src                                     \
29         doc                                     \
30         data
31
32 AUTOMAKE_OPTIONS =                              \
33         1.8                                     \
34         dist-bzip2
35
36 EXTRA_DIST =                                    \
37         autogen.sh                              \
38         configure.ac.in                         \
39         config.rpath                            \
40         extras/nano/README                      \
41         extras/nano/conky.nanorc                \
42         extras/vim/README                       \
43         extras/vim/ftdetect/conkyrc.vim         \
44         extras/vim/syntax/conkyrc.vim
45
46 ACLOCAL_AMFLAGS =                               \
47         -I m4
48
49 distclean-local:
50         /bin/rm -rf *.cache *~
51
52 # vi:set ts=8 sw=8 noet ai nocindent syntax=automake: