diff options
author | Søren Sandmann Pedersen <sandmann@daimi.au.dk> | 2005-06-08 19:15:43 +0000 |
---|---|---|
committer | Søren Sandmann Pedersen <sandmann@daimi.au.dk> | 2005-06-08 19:15:43 +0000 |
commit | 4070c0af6c7bfe12218181d56e8e3cbb86006d27 (patch) | |
tree | 6485bb3214311231d0fd668281a9136b5766fa5f /src | |
parent | 50911b052ce90d41cd0ae71f83352ffa45e7c0a4 (diff) |
- Add Xcursor build system
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.am | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/Makefile.am b/src/Makefile.am new file mode 100644 index 0000000..c02fd9a --- /dev/null +++ b/src/Makefile.am @@ -0,0 +1,15 @@ +lib_LTLIBRARIES = libXcursor.la + +libXcursor_la_SOURCES = xcursorint.h cursor.c display.c file.c library.c xlib.c + +libXcursor_la_LIBADD = $(XRENDER_LIBS) $(XFIXES_LIBS) $(X_LIBS) + +INCLUDES = -I$(top_srcdir)/include/X11/Xcursor + +# +# Shared library version info. This is not the same as the package version +# +libXcursor_la_LDFLAGS = -version-info @LT_VERSION_INFO@ -no-undefined + +libXcursorincludedir = $(includedir)/X11/Xcursor +libXcursorinclude_HEADERS = $(top_srcdir)/include/X11/Xcursor/Xcursor.h |