e1ea72a5fb
SF Patch Tracker [ 2964973 ] install: will not overwrite just-created ...blah... with... Submitted: Nick Leverton ( leveret ) - 2010-03-07 05:18 Full error: /usr/bin/install: will not overwrite just-created `/tmp/buildd/libupnp-1.6.6/debian/tmp/usr/share/doc/libupnp3-dev/examples/s ample_util.c' with `common/sample_util.c' This seems to be from Automake 1.11 which doesn't like having duplicate files in a Makefile.am. Patch attached, kindly provided by Stefan Potyra for Debian (http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=543068) This fix will be needed for both 1.6.x and 1.8.x branches. git-svn-id: https://pupnp.svn.sourceforge.net/svnroot/pupnp/branches/branch-1.6.x@511 119443c7-1b9e-41f8-b6fc-b9c35fce742c
85 lines
1.7 KiB
Makefile
85 lines
1.7 KiB
Makefile
#
|
|
# "Makefile.am" for "libupnp/upnp/sample"
|
|
#
|
|
# Copyright (C) 2007 Marcelo Roberto Jimenez <mroberto@users.sourceforge.net>
|
|
#
|
|
|
|
AM_CPPFLAGS = \
|
|
-I$(top_srcdir)/upnp/inc \
|
|
-I$(top_srcdir)/threadutil/inc \
|
|
-I$(top_srcdir)/ixml/inc
|
|
|
|
LDADD = \
|
|
$(top_builddir)/upnp/libupnp.la \
|
|
$(top_builddir)/threadutil/libthreadutil.la \
|
|
$(top_builddir)/ixml/libixml.la
|
|
|
|
|
|
# samples
|
|
noinst_PROGRAMS =
|
|
if ENABLE_SAMPLES
|
|
if ENABLE_CLIENT
|
|
noinst_PROGRAMS += upnp_tv_ctrlpt
|
|
upnp_tv_ctrlpt_CPPFLAGS = \
|
|
$(AM_CPPFLAGS) \
|
|
-I$(srcdir)/common/ \
|
|
-I$(srcdir)/tvctrlpt
|
|
if ENABLE_DEVICE
|
|
noinst_PROGRAMS += upnp_tv_combo
|
|
upnp_tv_combo_CPPFLAGS = $(AM_CPPFLAGS) \
|
|
-I$(srcdir)/common/ \
|
|
-I$(srcdir)/tvcombo
|
|
endif
|
|
endif
|
|
if ENABLE_DEVICE
|
|
noinst_PROGRAMS += upnp_tv_device
|
|
upnp_tv_device_CPPFLAGS = \
|
|
$(AM_CPPFLAGS) \
|
|
-I$(srcdir)/common/ \
|
|
-I$(srcdir)/tvdevice
|
|
endif
|
|
endif
|
|
|
|
|
|
upnp_tv_device_SOURCES = \
|
|
common/sample_util.c \
|
|
common/sample_util.h \
|
|
tvdevice/upnp_tv_device.c \
|
|
tvdevice/upnp_tv_device.h \
|
|
tvdevice/linux/upnp_tv_device_main.c
|
|
|
|
|
|
upnp_tv_ctrlpt_SOURCES = \
|
|
common/sample_util.c \
|
|
common/sample_util.h \
|
|
tvctrlpt/upnp_tv_ctrlpt.c \
|
|
tvctrlpt/upnp_tv_ctrlpt.h \
|
|
tvctrlpt/linux/upnp_tv_ctrlpt_main.c
|
|
|
|
upnp_tv_combo_SOURCES = \
|
|
common/sample_util.c \
|
|
common/sample_util.h \
|
|
tvcombo/upnp_tv_ctrlpt.c \
|
|
tvcombo/upnp_tv_ctrlpt.h \
|
|
tvcombo/upnp_tv_device.c \
|
|
tvcombo/upnp_tv_device.h \
|
|
tvcombo/linux/upnp_tv_combo_main.c
|
|
|
|
|
|
if WITH_DOCUMENTATION
|
|
examplesdir = $(docdir)/examples
|
|
examples_DATA = \
|
|
$(sort \
|
|
$(upnp_tv_ctrlpt_SOURCES) \
|
|
$(upnp_tv_device_SOURCES))
|
|
endif
|
|
|
|
|
|
EXTRA_DIST = \
|
|
web/tvcombodesc.xml \
|
|
web/tvcontrolSCPD.xml \
|
|
web/tvdevicedesc.xml \
|
|
web/tvdevicepres.html \
|
|
web/tvpictureSCPD.xml
|
|
|