summaryrefslogtreecommitdiff
path: root/src/Makefile.am
blob: 43751e20bd52fbb4b2d27002ab5c79aa5c958db6 (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
lib_LTLIBRARIES = libXdamage.la

libXdamage_la_SOURCES = \
	xdamageint.h	\
	Xdamage.c

libXdamage_la_LIBADD = $(XDAMAGE_LIBS) $(X_LIBS)
AM__CFLAGS = $(XDAMAGE_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
XDAMAGE_CURRENT=1
# bump for non-ABI changes, reset to zero when CURRENT changes
XDAMAGE_REVISION=0
# bump when the ABI changes in backward-compatible fashion
XDAMAGE_AGE=1
libXdamage_la_LDFLAGS = -version-info ${XDAMAGE_CURRENT}:${XDAMAGE_REVISION}:${XDAMAGE_AGE} -no-undefined

libXdamageincludedir = $(includedir)/X11/extensions
libXdamageinclude_HEADERS = $(top_srcdir)/include/X11/extensions/Xdamage.h