~peter-hutterer/evemu/evemu-event-v2

« back to all changes in this revision

Viewing changes to src/Makefile.am

  • Committer: Stephen M. Webb
  • Date: 2011-06-17 01:54:02 UTC
  • mto: This revision was merged to the branch mainline in revision 40.
  • Revision ID: stephen.webb@canonical.com-20110617015402-o50qho6cvyc65f2b
Added ELF symbol versioning.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
version_script = $(srcdir)/libutouch-evemu.ver
 
2
 
1
3
lib_LTLIBRARIES = libutouch-evemu.la
2
4
 
3
 
libutouch_evemu_la_LDFLAGS = -version-info @LIB_VERSION@
 
5
libutouch_evemu_la_LDFLAGS = \
 
6
        -version-info @LIB_VERSION@ \
 
7
        -Wl,-z,defs -Wl,--as-needed \
 
8
        -Wl,--version-script=$(version_script)
4
9
 
5
10
libutouch_evemu_la_SOURCES = \
6
11
        evemu-impl.h \
13
18
libutouch_evemuincludedir = $(includedir)
14
19
libutouch_evemuinclude_HEADERS = \
15
20
        $(top_srcdir)/include/evemu.h
 
21
 
 
22
EXTRA_DIST = $(version_script)
 
23