blob: ba7b258903c3a23bf8cac1e13b3e896e94d15db1 (
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
28
29
30
31
32
|
noinst_LTLIBRARIES = libXquartzXpr.la
AM_CFLAGS = $(XSERVER_CFLAGS) $(DIX_CFLAGS)
AM_CPPFLAGS = \
-I$(srcdir) -I$(srcdir)/.. \
-I$(top_srcdir)/miext \
-I$(top_srcdir)/miext/rootless
libXquartzXpr_la_SOURCES = \
appledri.c \
dri.c \
driWrap.c \
xprAppleWM.c \
xprCursor.c \
xprEvent.c \
xprFrame.c \
xprScreen.c \
x-hash.c \
x-hook.c \
x-list.c
EXTRA_DIST = \
dri.h \
driWrap.h \
dristruct.h \
appledri.h \
appledristr.h \
x-hash.h \
x-hook.h \
x-list.h \
xpr.h \
xprEvent.h
|