Parent: [b4d98e] (diff)

Child: [537861] (diff)

Download this file

Makefile.am    118 lines (104 with data), 3.5 kB

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
AM_CPPFLAGS = -DDEBUG -g -Wall \
-DDATADIR=\"${pkgdatadir}\" -DCONFIGDIR=\"${sysconfdir}\"
AM_CXXFLAGS = -std=c++0x
lib_LTLIBRARIES = libupnpp.la
libupnpp_la_SOURCES = \
libupnpp/control/avlastchg.cxx \
libupnpp/control/avlastchg.hxx \
libupnpp/control/avtransport.cxx \
libupnpp/control/avtransport.hxx \
libupnpp/control/cdircontent.cxx \
libupnpp/control/cdircontent.hxx \
libupnpp/control/cdirectory.cxx \
libupnpp/control/cdirectory.hxx \
libupnpp/control/description.cxx \
libupnpp/control/description.hxx \
libupnpp/control/discovery.cxx \
libupnpp/control/discovery.hxx \
libupnpp/control/mediarenderer.cxx \
libupnpp/control/mediarenderer.hxx \
libupnpp/control/renderingcontrol.cxx \
libupnpp/control/renderingcontrol.hxx \
libupnpp/control/service.cxx \
libupnpp/control/service.hxx \
libupnpp/device/device.cxx \
libupnpp/device/device.hxx \
libupnpp/device/vdir.cxx \
libupnpp/device/vdir.hxx \
libupnpp/expatmm.hxx \
libupnpp/getsyshwaddr.c \
libupnpp/getsyshwaddr.h \
libupnpp/ixmlwrap.cxx \
libupnpp/ixmlwrap.hxx \
libupnpp/log.cxx \
libupnpp/log.hxx \
libupnpp/md5.cxx \
libupnpp/md5.hxx \
libupnpp/ptmutex.hxx \
libupnpp/soaphelp.cxx \
libupnpp/soaphelp.hxx \
libupnpp/upnpavutils.cxx \
libupnpp/upnpavutils.hxx \
libupnpp/upnpp_p.hxx \
libupnpp/upnpplib.cxx \
libupnpp/upnpplib.hxx \
libupnpp/workqueue.hxx
nobase_include_HEADERS = \
libupnpp/control/avtransport.hxx \
libupnpp/control/cdircontent.hxx \
libupnpp/control/cdirectory.hxx \
libupnpp/control/description.hxx \
libupnpp/control/discovery.hxx \
libupnpp/control/mediarenderer.hxx \
libupnpp/control/renderingcontrol.hxx \
libupnpp/control/service.hxx \
libupnpp/device/device.hxx \
libupnpp/log.hxx \
libupnpp/ptmutex.hxx \
libupnpp/soaphelp.hxx \
libupnpp/upnpavutils.hxx \
libupnpp/upnpplib.hxx \
libupnpp/upnpputils.hxx
libupnpp_la_LDFLAGS = -release $(VERSION)
libupnpp_la_LIBADD = $(LIBUPNPP_LIBS)
bin_PROGRAMS = upmpdcli
upmpdcli_SOURCES = \
upmpd/conftree.cxx \
upmpd/conftree.hxx \
upmpd/ohmetacache.cxx \
upmpd/ohmetacache.hxx \
upmpd/mpdcli.cxx \
upmpd/mpdcli.hxx \
upmpd/upmpd.hxx \
upmpd/upmpd.cxx \
upmpd/upmpdutils.cxx \
upmpd/upmpdutils.hxx \
upmpd/renderctl.hxx \
upmpd/renderctl.cxx \
upmpd/avtransport.hxx \
upmpd/avtransport.cxx \
upmpd/conman.hxx \
upmpd/conman.cxx \
upmpd/ohproduct.hxx \
upmpd/ohproduct.cxx \
upmpd/ohinfo.hxx \
upmpd/ohinfo.cxx \
upmpd/ohtime.hxx \
upmpd/ohtime.cxx \
upmpd/ohvolume.hxx \
upmpd/ohvolume.cxx \
upmpd/ohplaylist.hxx \
upmpd/ohplaylist.cxx \
upmpd/base64.hxx \
upmpd/base64.cxx
upmpdcli_LDADD = libupnpp.la -lmpdclient -lpthread -lrt
dist_pkgdata_DATA = upmpd/description.xml upmpd/AVTransport.xml \
upmpd/RenderingControl.xml upmpd/ConnectionManager.xml \
upmpd/OHProduct.xml upmpd/OHInfo.xml upmpd/OHTime.xml \
upmpd/OHVolume.xml upmpd/OHPlaylist.xml upmpd/protocolinfo.txt
dist_sysconf_DATA = upmpd/upmpdcli.conf
dist_man1_MANS = man/upmpdcli.1
EXTRA_DIST = systemd/upmpdcli.service
dist-hook:
test -z "`git status -s | grep -v upmpdcli-$(VERSION)`"
git tag -f -a upmpdcli-v$(VERSION) -m 'version $(VERSION)'