remove infopipe support
[monky] / src / Makefile.am
1 bin_PROGRAMS = conky
2
3 if BUILD_AUDACIOUS
4 audacious = audacious.c audacious.h
5 endif
6
7 if BUILD_BMPX
8 bmpx = bmpx.c
9 endif
10
11 if BUILD_SETI
12 seti = seti.c
13 endif
14
15 if BUILD_MPD
16 mpd = mpd.c libmpdclient.c
17 endif
18
19 if BUILD_XMMS2
20 xmms2 = xmms2.c
21 endif
22
23 if BUILD_LINUX
24 linux = linux.c top.c
25 PTHREAD_LIBS =  -lpthread
26 endif
27
28 #if BUILD_SOLARIS
29 #solaris = solaris.c
30 #endif
31
32 if BUILD_FREEBSD
33 freebsd = freebsd.c
34 PTHREAD_LIBS =  -pthread
35 endif
36
37 #if BUILD_NETBSD
38 #netbsd = netbsd.c
39 #endif
40
41 if BUILD_PORT_MONITORS
42 port_monitors = libtcp-portmon.h libtcp-portmon.c hash.h hash.c
43 endif
44
45 if BUILD_MLDONKEY
46 mldonkey = mldonkey.c
47 endif
48
49 if BUILD_X11
50 x11 = x11.c
51 endif
52
53 if BUILD_HDDTEMP
54 hddtemp = hddtemp.c
55 endif
56
57 conky_SOURCES =                 \
58         $(audacious)            \
59         $(bmpx)                 \
60         common.c                \
61         conky.c                 \
62         conky.h                 \
63         $(freebsd)              \
64         fs.c                    \
65         $(hddtemp)              \
66         $(linux)                \
67         mail.c                  \
68         mixer.c                 \
69         $(mldonkey)             \
70         $(mpd)                  \
71         $(netbsd)               \
72         $(port_monitors)        \
73         $(seti)                 \
74         $(solaris)              \
75         remotec.c               \
76         remotec.h               \
77         remoted.c               \
78         remoted.h               \
79         $(x11)                  \
80         $(xmms2) 
81
82 AM_LDFLAGS = $(X11_LIBS) $(XFT_LIBS) $(CAIRO_LIBS) $(PTHREAD_LIBS) -lm
83
84 EXTRA_DIST =                    \
85         audacious.c             \
86         audacious.h             \
87         bmpx.c                  \
88         freebsd.c               \
89         ftp.c                   \
90         ftp.h                   \
91         hash.c                  \
92         hash.h                  \
93         hddtemp.c               \
94         infopipe.c              \
95         infopipe.h              \
96         linux.c                 \
97         libmpdclient.c          \
98         libmpdclient.h          \
99         libtcp-portmon.c        \
100         libtcp-portmon.h        \
101         mldonkey.c              \
102         mpd.c                   \
103         netbsd.c                \
104         seti.c                  \
105         solaris.c               \
106         top.h                   \
107         x11.c                   \
108         xmms2.c