34 lines
498 B
Makefile
34 lines
498 B
Makefile
|
noinst_LTLIBRARIES = libdix.la
|
||
|
|
||
|
AM_CFLAGS = $(DIX_CFLAGS) \
|
||
|
-DVENDOR_STRING=\""@VENDOR_STRING@"\" \
|
||
|
-DVENDOR_RELEASE="@VENDOR_RELEASE@"
|
||
|
|
||
|
libdix_la_SOURCES = \
|
||
|
atom.c \
|
||
|
colormap.c \
|
||
|
cursor.c \
|
||
|
devices.c \
|
||
|
dispatch.c \
|
||
|
dispatch.h \
|
||
|
dixfonts.c \
|
||
|
dixutils.c \
|
||
|
events.c \
|
||
|
extension.c \
|
||
|
ffs.c \
|
||
|
gc.c \
|
||
|
globals.c \
|
||
|
glyphcurs.c \
|
||
|
grabs.c \
|
||
|
initatoms.c \
|
||
|
main.c \
|
||
|
pixmap.c \
|
||
|
privates.c \
|
||
|
property.c \
|
||
|
resource.c \
|
||
|
swaprep.c \
|
||
|
swapreq.c \
|
||
|
tables.c \
|
||
|
window.c \
|
||
|
strcasecmp.c
|