mirror of
https://github.com/Llewellynvdm/conky.git
synced 2024-11-18 11:05:18 +00:00
a1452f5db4
1) sysfs battery support (for Linux >=2.6.24) (thanks Kapil) 2) Improved audacious support patch (thanks Miroslav) 3) tp_smapi support patch for IBM laptops (thanks Phil) 4) user info patch (thanks Roland) 5) added conky build info patch (thanks Roland) 6) added if_up patch (thanks Phil) 7) added reload on SIGHUP patch (thanks Jonas) 8) added pad percentages patch (thanks Jonas) 9) added fs_type patch (thanks Ryan) 10) added xmms2 fixes patch (thanks Lassi) 11) fix sysfs crash patch (thanks Phil) 12) multiple ip patch ($addrs) * Added more alignment support (top_middle, bottom_middle, middle_left, and middle_right). git-svn-id: https://conky.svn.sourceforge.net/svnroot/conky/trunk/conky1@1010 7f574dfc-610e-0410-a909-a81674777703
143 lines
2.8 KiB
Makefile
143 lines
2.8 KiB
Makefile
# Conky, a system monitor, based on torsmo
|
|
#
|
|
# Any original torsmo code is licensed under the BSD license
|
|
#
|
|
# All code written since the fork of torsmo is licensed under the GPL
|
|
#
|
|
# Please see COPYING for details
|
|
#
|
|
# Copyright (c) 2004, Hannu Saransaari and Lauri Hakkarainen
|
|
# Copyright (c) 2005-2007 Brenden Matthews, Philip Kovacs, et. al. (see AUTHORS)
|
|
# All rights reserved.
|
|
#
|
|
# This program 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 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
# $Id$
|
|
|
|
INCLUDES = \
|
|
-DSYSTEM_CONFIG_FILE=\"$(sysconfdir)/conky/conky.conf\"
|
|
|
|
bin_PROGRAMS = conky
|
|
|
|
if BUILD_AUDACIOUS
|
|
audacious = audacious.c audacious.h
|
|
endif
|
|
|
|
if BUILD_BMPX
|
|
bmpx = bmpx.c
|
|
endif
|
|
|
|
if BUILD_MPD
|
|
mpd = mpd.c libmpdclient.c
|
|
endif
|
|
|
|
if BUILD_XMMS2
|
|
xmms2 = xmms2.c
|
|
endif
|
|
|
|
if BUILD_LINUX
|
|
linux = linux.c top.c diskio.c
|
|
PTHREAD_LIBS = -lpthread
|
|
endif
|
|
|
|
#if BUILD_SOLARIS
|
|
#solaris = solaris.c
|
|
#endif
|
|
|
|
if BUILD_FREEBSD
|
|
freebsd = freebsd.c diskio.c
|
|
PTHREAD_LIBS = -pthread
|
|
endif
|
|
|
|
#if BUILD_NETBSD
|
|
#netbsd = netbsd.c
|
|
#endif
|
|
|
|
if BUILD_OPENBSD
|
|
openbsd = openbsd.c
|
|
PTHREAD_LIBS = -pthread
|
|
endif
|
|
|
|
if BUILD_PORT_MONITORS
|
|
port_monitors = libtcp-portmon.h libtcp-portmon.c
|
|
endif
|
|
|
|
if BUILD_X11
|
|
x11 = x11.c
|
|
endif
|
|
|
|
if BUILD_HDDTEMP
|
|
hddtemp = hddtemp.c
|
|
endif
|
|
|
|
if BUILD_RSS
|
|
rss = rss.c prss.c prss.h
|
|
endif
|
|
|
|
if BUILD_SMAPI
|
|
smapi = smapi.c smapi.h
|
|
endif
|
|
|
|
conky_SOURCES = \
|
|
$(audacious) \
|
|
$(bmpx) \
|
|
common.c \
|
|
conky.c \
|
|
conky.h \
|
|
$(freebsd) \
|
|
fs.c \
|
|
$(hddtemp) \
|
|
$(linux) \
|
|
mail.c \
|
|
mixer.c \
|
|
$(mpd) \
|
|
$(netbsd) \
|
|
$(openbsd) \
|
|
$(port_monitors) \
|
|
$(rss) \
|
|
$(solaris) \
|
|
timed_thread.c \
|
|
timed_thread.h \
|
|
mboxscan.c \
|
|
mboxscan.h \
|
|
$(x11) \
|
|
$(xmms2) \
|
|
$(smapi) \
|
|
users.c
|
|
|
|
AM_LDFLAGS = $(PTHREAD_LIBS) -lm
|
|
|
|
EXTRA_DIST = \
|
|
audacious.c \
|
|
audacious.h \
|
|
bmpx.c \
|
|
freebsd.c \
|
|
hddtemp.c \
|
|
linux.c \
|
|
libmpdclient.c \
|
|
libmpdclient.h \
|
|
libtcp-portmon.c \
|
|
libtcp-portmon.h \
|
|
mpd.c \
|
|
netbsd.c \
|
|
openbsd.c \
|
|
solaris.c \
|
|
top.h \
|
|
diskio.h \
|
|
x11.c \
|
|
xmms2.c \
|
|
smapi.c \
|
|
users.c
|
|
|
|
# vi:set ts=8 sw=8 noet ai nocindent syntax=automake:
|