Initial revision 6759
[qball-mpd.git] / src / .svn / text-base / Makefile.am.svn-base
blobcf56ba1fb305e50a11ad5b57c360656e0c22e13d
1 bin_PROGRAMS = mpd
2 SUBDIRS = $(MP4FF_SUBDIR)
4 mpd_audioOutputs = \
5         audioOutputs/audioOutput_shout.c \
6         audioOutputs/audioOutput_null.c \
7         audioOutputs/audioOutput_fifo.c \
8         audioOutputs/audioOutput_alsa.c \
9         audioOutputs/audioOutput_ao.c \
10         audioOutputs/audioOutput_oss.c \
11         audioOutputs/audioOutput_osx.c \
12         audioOutputs/audioOutput_pulse.c \
13         audioOutputs/audioOutput_mvp.c \
14         audioOutputs/audioOutput_jack.c
16 mpd_inputPlugins = \
17         inputPlugins/_flac_common.c \
18         inputPlugins/_ogg_common.c \
19         inputPlugins/oggflac_plugin.c \
20         inputPlugins/oggvorbis_plugin.c \
21         inputPlugins/aac_plugin.c \
22         inputPlugins/audiofile_plugin.c \
23         inputPlugins/flac_plugin.c \
24         inputPlugins/mod_plugin.c \
25         inputPlugins/mp3_plugin.c \
26         inputPlugins/mp4_plugin.c \
27         inputPlugins/mpc_plugin.c \
28         inputPlugins/wavpack_plugin.c
31 mpd_headers = \
32         ack.h \
33         audio.h \
34         audioOutput.h \
35         buffer2array.h \
36         charConv.h \
37         command.h \
38         conf.h \
39         dbUtils.h \
40         decode.h \
41         directory.h \
42         gcc.h \
43         inputPlugin.h \
44         inputPlugins/_flac_common.h \
45         inputPlugins/_ogg_common.h \
46         inputStream.h \
47         inputStream_file.h \
48         inputStream_http.h \
49         interface.h \
50         list.h \
51         listen.h \
52         log.h \
53         ls.h \
54         metadataChunk.h \
55         mpd_types.h \
56         myfprintf.h \
57         normalize.h \
58         compress.h \
59         outputBuffer.h \
60         path.h \
61         pcm_utils.h \
62         permission.h \
63         player.h \
64         playerData.h \
65         playlist.h \
66         replayGain.h \
67         signal_check.h \
68         sig_handlers.h \
69         sllist.h \
70         song.h \
71         state_file.h \
72         stats.h \
73         tag.h \
74         tagTracker.h \
75         tree.h \
76         utf8.h \
77         utils.h \
78         volume.h \
79         ioops.h \
80         zeroconf.h \
81         locate.h \
82         storedPlaylist.h \
83         timer.h
86 mpd_SOURCES = \
87         $(mpd_headers) \
88         $(mpd_audioOutputs) \
89         $(mpd_inputPlugins) \
90         audio.c \
91         audioOutput.c \
92         buffer2array.c \
93         charConv.c \
94         command.c \
95         conf.c \
96         dbUtils.c \
97         decode.c \
98         directory.c \
99         inputPlugin.c \
100         inputStream.c \
101         inputStream_file.c \
102         inputStream_http.c \
103         interface.c \
104         list.c \
105         listen.c \
106         log.c \
107         ls.c \
108         main.c \
109         metadataChunk.c \
110         myfprintf.c \
111         normalize.c \
112         compress.c \
113         outputBuffer.c \
114         path.c \
115         pcm_utils.c \
116         permission.c \
117         player.c \
118         playerData.c \
119         playlist.c \
120         replayGain.c \
121         sig_handlers.c \
122         signal_check.c \
123         sllist.c \
124         song.c \
125         state_file.c \
126         stats.c \
127         tag.c \
128         tagTracker.c \
129         tree.c \
130         utils.c \
131         volume.c \
132         utf8.c \
133         zeroconf.c \
134         locate.c \
135         storedPlaylist.c \
136         timer.c
139 mpd_CFLAGS = $(MPD_CFLAGS)
140 mpd_LDADD = $(MPD_LIBS) $(MP4FF_LIB)
142 DIST_SUBDIRS = mp4ff
144 # sparse is a semantic parser
145 # URL: git://www.kernel.org/pub/scm/devel/sparse/sparse.git
146 SPARSE = sparse
147 SPARSE_FLAGS =
148 sparse-check:
149         for i in $(mpd_SOURCES); \
150         do \
151                 $(SPARSE) -I. $(mpd_CFLAGS) $(SPARSE_FLAGS) $(srcdir)/$$i || exit; \
152         done