File: Makefile.am

package info (click to toggle)
xfce4-settings 4.20.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 18,808 kB
  • sloc: ansic: 46,850; sh: 5,532; makefile: 1,129; xml: 555; python: 111; sed: 16
file content (44 lines) | stat: -rw-r--r-- 940 bytes parent folder | download | duplicates (2)
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
if ENABLE_WAYLAND

AM_CPPFLAGS = \
	-I$(top_srcdir) \
	-DG_LOG_DOMAIN=\"libprotocols\" \
	$(PLATFORM_CPPFLAGS)

noinst_LTLIBRARIES = \
	libprotocols.la

libprotocols_built_sources = \
	wlr-output-management-unstable-v1.c \
	wlr-output-management-unstable-v1-client.h

nodist_libprotocols_la_SOURCES = \
	wlr-output-management-unstable-v1.c

libprotocols_la_CFLAGS = \
	$(WAYLAND_CLIENT_CFLAGS) \
	$(PLATFORM_CFLAGS)

libprotocols_la_LDFLAGS = \
	-no-undefined \
	$(PLATFORM_LDFLAGS)

libprotocols_la_LIBADD = \
	$(WAYLAND_CLIENT_LIBS)

%.c: $(WLR_PROTOCOLS_PKGDATADIR)/unstable/%.xml
	$(AM_V_GEN) wayland-scanner private-code $< $@

%-client.h: $(WLR_PROTOCOLS_PKGDATADIR)/unstable/%.xml
	$(AM_V_GEN) wayland-scanner client-header $< $@

DISTCLEANFILES = \
	$(libprotocols_built_sources)

BUILT_SOURCES = \
	$(libprotocols_built_sources)

endif # ENABLE_WAYLAND

EXTRA_DIST = \
	wlr-protocols/unstable/wlr-output-management-unstable-v1.xml