File: Makefile.am

package info (click to toggle)
dleyna-renderer 0.6.0-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 796 kB
  • sloc: ansic: 6,136; python: 746; makefile: 105; sh: 20
file content (30 lines) | stat: -rw-r--r-- 926 bytes parent folder | download
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
AM_CFLAGS =	$(GLIB_CFLAGS)				\
		$(GIO_CFLAGS)				\
		$(DLEYNA_CORE_CFLAGS)			\
		-I$(top_builddir)/libdleyna/renderer	\
		-include config.h

libexec_PROGRAMS = dleyna-renderer-service

dleyna_renderer_service_SOURCES =	daemon.c

dleyna_renderer_service_LDADD =	$(GLIB_LIBS)				      			\
				$(GIO_LIBS)				     			\
				$(DLEYNA_CORE_LIBS)			      			\
				$(top_builddir)/libdleyna/renderer/libdleyna-renderer-1.0.la

dbusservicedir = $(DBUS_SERVICE_DIR)
dbusservice_in_files = com.intel.dleyna-renderer.service.in
dbusservice_DATA = com.intel.dleyna-renderer.service

# Replace the 'libexecdir' marker with its fully expanded value
%.service: %.service.in Makefile
	$(AM_V_GEN) $(SED) -e "s|\@libexecdir\@|$(libexecdir)|" $< > $@

pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = dleyna-renderer-service-1.0.pc

EXTRA_DIST = $(dbusservice_in_files)

CLEANFILES = $(dbusservice_DATA)
DISTCLEANFILES = $(pkgconfig_DATA)