|
a/Makefile.am |
|
b/Makefile.am |
|
... |
|
... |
6 |
AM_CXXFLAGS = -std=c++0x
|
6 |
AM_CXXFLAGS = -std=c++0x
|
7 |
|
7 |
|
8 |
bin_PROGRAMS = upmpdcli
|
8 |
bin_PROGRAMS = upmpdcli
|
9 |
|
9 |
|
10 |
upmpdcli_SOURCES = \
|
10 |
upmpdcli_SOURCES = \
|
|
|
11 |
src/avtransport.cxx \
|
|
|
12 |
src/avtransport.hxx \
|
|
|
13 |
src/execmd.cpp \
|
|
|
14 |
src/execmd.h \
|
|
|
15 |
src/netcon.cpp \
|
|
|
16 |
src/netcon.h \
|
|
|
17 |
src/closefrom.cpp \
|
|
|
18 |
src/closefrom.h \
|
11 |
src/conftree.cxx \
|
19 |
src/conftree.cxx \
|
12 |
src/conftree.hxx \
|
20 |
src/conftree.hxx \
|
|
|
21 |
src/conman.cxx \
|
|
|
22 |
src/conman.hxx \
|
|
|
23 |
src/mpdcli.cxx \
|
|
|
24 |
src/mpdcli.hxx \
|
|
|
25 |
src/ohinfo.cxx \
|
|
|
26 |
src/ohinfo.hxx \
|
13 |
src/ohmetacache.cxx \
|
27 |
src/ohmetacache.cxx \
|
14 |
src/ohmetacache.hxx \
|
28 |
src/ohmetacache.hxx \
|
|
|
29 |
src/ohplaylist.cxx \
|
|
|
30 |
src/ohplaylist.hxx \
|
|
|
31 |
src/ohproduct.cxx \
|
|
|
32 |
src/ohreceiver.hxx \
|
|
|
33 |
src/ohreceiver.cxx \
|
|
|
34 |
src/ohproduct.hxx \
|
|
|
35 |
src/ohtime.cxx \
|
|
|
36 |
src/ohtime.hxx \
|
|
|
37 |
src/ohvolume.cxx \
|
|
|
38 |
src/ohvolume.hxx \
|
|
|
39 |
src/ptmutex.hxx \
|
|
|
40 |
src/renderctl.cxx \
|
|
|
41 |
src/renderctl.hxx \
|
15 |
src/mpdcli.cxx \
|
42 |
src/upmpd.cxx \
|
16 |
src/mpdcli.hxx \
|
|
|
17 |
src/upmpd.hxx \
|
43 |
src/upmpd.hxx \
|
18 |
src/upmpd.cxx \
|
|
|
19 |
src/upmpdutils.cxx \
|
44 |
src/upmpdutils.cxx \
|
20 |
src/upmpdutils.hxx \
|
45 |
src/upmpdutils.hxx \
|
21 |
src/renderctl.hxx \
|
|
|
22 |
src/renderctl.cxx \
|
|
|
23 |
src/avtransport.hxx \
|
|
|
24 |
src/avtransport.cxx \
|
|
|
25 |
src/conman.hxx \
|
|
|
26 |
src/conman.cxx \
|
|
|
27 |
src/ohproduct.hxx \
|
|
|
28 |
src/ohproduct.cxx \
|
|
|
29 |
src/ohinfo.hxx \
|
|
|
30 |
src/ohinfo.cxx \
|
|
|
31 |
src/ohtime.hxx \
|
|
|
32 |
src/ohtime.cxx \
|
|
|
33 |
src/ohvolume.hxx \
|
|
|
34 |
src/ohvolume.cxx \
|
|
|
35 |
src/ohplaylist.hxx \
|
|
|
36 |
src/ohplaylist.cxx \
|
|
|
37 |
src/ptmutex.hxx \
|
|
|
38 |
src/workqueue.hxx
|
46 |
src/workqueue.hxx
|
39 |
|
47 |
|
40 |
upmpdcli_LDADD = -lupnpp -lmpdclient -lpthread
|
48 |
upmpdcli_LDADD = -lupnpp -lmpdclient -lpthread
|
41 |
|
49 |
|
42 |
dist_pkgdata_DATA = src/description.xml src/AVTransport.xml \
|
50 |
dist_pkgdata_DATA = src/description.xml src/AVTransport.xml \
|
43 |
src/RenderingControl.xml src/ConnectionManager.xml \
|
51 |
src/RenderingControl.xml src/ConnectionManager.xml \
|
44 |
src/OHProduct.xml src/OHInfo.xml src/OHTime.xml \
|
52 |
src/OHProduct.xml src/OHInfo.xml src/OHTime.xml \
|
45 |
src/OHVolume.xml src/OHPlaylist.xml src/protocolinfo.txt
|
53 |
src/OHVolume.xml src/OHPlaylist.xml src/OHReceiver.xml \
|
|
|
54 |
src/protocolinfo.txt
|
46 |
|
55 |
|
47 |
dist_sysconf_DATA = src/upmpdcli.conf
|
56 |
dist_sysconf_DATA = src/upmpdcli.conf
|
48 |
|
57 |
|
49 |
dist_man1_MANS = man/upmpdcli.1
|
58 |
dist_man1_MANS = man/upmpdcli.1
|
50 |
|
59 |
|