blob: ab7e778c67b40b178fa77c0269fc420f712fbde8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
lib_LTLIBRARIES = libXrandr.la
libXrandr_la_SOURCES = \
Xrandr.c \
Xrandrint.h \
XrrConfig.c \
XrrCrtc.c \
XrrMode.c \
XrrOutput.c \
XrrProperty.c \
XrrScreen.c
libXrandr_la_LIBADD = @RANDR_LIBS@
AM_CFLAGS = @RANDR_CFLAGS@ @MALLOC_ZERO_CFLAGS@
INCLUDES = -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
|