summaryrefslogtreecommitdiff
path: root/src/Makefile.am
blob: 4d6451cf9736544ce69da61d62a327d5f7143880 (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
lib_LTLIBRARIES = libXfixes.la

libXfixes_la_SOURCES = 	\
	Cursor.c	\
	Region.c	\
	SaveSet.c	\
	Selection.c	\
	Xfixes.c	\
	Xfixesint.h

libXfixes_la_LIBADD = @X_LIBS@
AM_CFLAGS = @X_CFLAGS@

INCLUDES = -I$(top_srcdir)/include/X11/extensions

#
# Library version info.  Check the libtool docs for
# instructions on when and how to change this value
#
# bump when the ABI changes
XFIXES_CURRENT=2
# bump for non-ABI changes, reset to zero when CURRENT changes
XFIXES_REVISION=0
# bump when the ABI changes in backward-compatible fashion
XFIXES_AGE=2
libXfixes_la_LDFLAGS = -version-info ${XFIXES_CURRENT}:${XFIXES_REVISION}:${XFIXES_AGE} -no-undefined

libXfixesincludedir = $(includedir)/X11/extensions
libXfixesinclude_HEADERS = $(top_srcdir)/include/X11/extensions/Xfixes.h