blob: 21138469b54a3452972c65d56b3e5ffa84680895 (
plain)
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
|
lib_LTLIBRARIES = libXrandr.la
libXrandr_la_SOURCES = \
Xrandr.c \
Xrandrint.h \
XrrConfig.c \
XrrCrtc.c \
XrrMode.c \
XrrOutput.c \
XrrProperty.c \
XrrScreen.c \
XrrProvider.c \
XrrProviderProperty.c
libXrandr_la_LIBADD = @RANDR_LIBS@
AM_CFLAGS = \
$(RANDR_CFLAGS) \
$(MALLOC_ZERO_CFLAGS) \
$(CWARNFLAGS)
AM_CPPFLAGS = -I$(top_srcdir)/include/X11/extensions
libXrandr_la_LDFLAGS = -version-number 2:2:0 -no-undefined
libXrandrincludedir = $(includedir)/X11/extensions
libXrandrinclude_HEADERS = $(top_srcdir)/include/X11/extensions/Xrandr.h
|