/
githubmirror
/
libnfsidmap
Обзор
Документация
Войти
/
githubmirror
/
libnfsidmap
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Makefile.am
69 строк
2 KB
Christian Thiemann
Add winbind mapping plugin
12 ноя 2013, 11:41
12 ноя 2013, 11:41
4522c7b
Код
Авторство
О чём код?
ACLOCAL_AMFLAGS = -I m4 if ENABLE_LDAP UMICH_LDAP_LIB = umich_ldap.la else UMICH_LDAP_LIB = endif if ENABLE_GUMS GUMS_MAPPING_LIB = gums.la else GUMS_MAPPING_LIB = endif if ENABLE_WINBIND WINBIND_LIB = winbind.la else WINBIND_LIB = endif lib_LTLIBRARIES = libnfsidmap.la pkglib_LTLIBRARIES = nsswitch.la static.la $(UMICH_LDAP_LIB) $(GUMS_MAPPING_LIB) $(WINBIND_LIB) # Library versioning notes from: # http://sources.redhat.com/autobook/autobook/autobook_91.html # # -version-info <current>:<revision>:<age> # <current> The number of the current interface exported by library. # <revision> The implementation number of the most recent interface # exported by the library. (i.e. revision should be updated # with each new release of the library, and reset to zero # when <current> is updated.) # <age> The number of previous additional interfaces supported # by this library. libnfsidmap_la_SOURCES = libnfsidmap.c cfg.c strlcpy.c cfg.h nfsidmap_internal.h queue.h libnfsidmap_la_LDFLAGS = -version-info 3:0:3 libnfsidmap_la_LIBADD = -ldl nsswitch_la_SOURCES = nss.c nsswitch_la_LDFLAGS = -module -avoid-version static_la_SOURCES = static.c static_la_LDFLAGS = -module -avoid-version umich_ldap_la_SOURCES = umich_ldap.c umich_ldap_la_LDFLAGS = -module -avoid-version umich_ldap_la_LIBADD = -lldap gums_la_SOURCES = gums.c gums_la_LDFLAGS = -module -avoid-version winbind_la_SOURCES = winbind.c winbind_la_LDFLAGS = -module -avoid-version winbind_la_LIBADD = -lwbclient man3_MANS = nfs4_uid_to_name.3 man5_MANS = idmapd.conf.5 include_HEADERS = nfsidmap.h EXTRA_DIST = $(man3_MANS) \ $(man5_MANS) \ libtest.c \ idmapd.conf # XXX: also exclude debian/files and debian/files.new ? do a clean?? dist-hook: mkdir $(distdir)/debian/ find $(srcdir)/debian -maxdepth 1 -not -type d |xargs -i cp {} $(distdir)/debian/ pkgconfigdir=$(libdir)/pkgconfig pkgconfig_DATA = libnfsidmap.pc