Use safe_strncat() to prevent overrunning the destination buffer.
[userinfo.git] / src / modules / Makefile.am
blob6fb1a13a945f4b16b4c8587c14fbd3629a26277e
1 pkglib_LTLIBRARIES = login.la mail.la passwd.la
2 login_la_SOURCES = login.c login.h common.c common.h
3 if KVM
4 login_la_LDFLAGS = -module -avoid-version -lkvm
5 else
6 login_la_LDFLAGS = -module -avoid-version
7 endif
8 mail_la_SOURCES = mail.c common.c common.h
9 mail_la_LDFLAGS = -module -avoid-version
10 passwd_la_SOURCES = passwd.c common.c common.h
11 passwd_la_LDFLAGS = -module -avoid-version
13 install-data-hook:
14         rm -f $(pkglibdir)/*.la
16 uninstall-hook:
17         rm -f $(pkglibdir)/*.so
19 indent:
20         indent *.[ch] && rm -f *.[ch]~