29 lines
585 B
Makefile
29 lines
585 B
Makefile
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 \
|
|
XrrMonitor.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
|