blob: bae8b2379d14ed7eef13583c331298e73da08e2a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
## Process this file with automake to produce Makefile.in
AUTOMAKE_OPTIONS = no-dependencies
INCLUDES = -I$(top_srcdir)/include -I$(top_srcdir)/src $(X_CFLAGS) $(FX_CFLAGS)
if HAVE_X11
# Build a libtool convenience library.
noinst_LTLIBRARIES = libMesaX11.la
endif
libMesaX11_la_SOURCES = \
glxapi.c \
glxapi.h \
fakeglx.c \
xfonts.c \
xmesa1.c \
xmesa2.c \
xmesa3.c \
xmesa4.c \
xmesaP.h
libMesaX11_la_LIBADD = $(X_LIBS) $(X_PRE_LIBS) $(X_LIBADD)
|