diff options
Diffstat (limited to 'randr/Makefile.am')
-rw-r--r-- | randr/Makefile.am | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/randr/Makefile.am b/randr/Makefile.am new file mode 100644 index 0000000..de338b9 --- /dev/null +++ b/randr/Makefile.am @@ -0,0 +1,29 @@ +noinst_LTLIBRARIES = librandr.la + +AM_CFLAGS = $(DIX_CFLAGS) + +XINERAMA_SRCS = rrxinerama.c + +if XORG +sdk_HEADERS = randrstr.h rrtransform.h +endif + +librandr_la_SOURCES = \ + randr.c \ + randrstr.h \ + rrcrtc.c \ + rrdispatch.c \ + rrinfo.c \ + rrmode.c \ + rroutput.c \ + rrpointer.c \ + rrproperty.c \ + rrscreen.c \ + rrsdispatch.c \ + rrtransform.h \ + rrtransform.c + +if XINERAMA +librandr_la_SOURCES += ${XINERAMA_SRCS} +endif + |