Blame nslcd/Makefile.am

Packit 6bd9ab
# Makefile.am - use automake to generate Makefile.in
Packit 6bd9ab
#
Packit 6bd9ab
# Copyright (C) 2006-2007 West Consulting
Packit 6bd9ab
# Copyright (C) 2006-2014 Arthur de Jong
Packit 6bd9ab
#
Packit 6bd9ab
# This library is free software; you can redistribute it and/or
Packit 6bd9ab
# modify it under the terms of the GNU Lesser General Public
Packit 6bd9ab
# License as published by the Free Software Foundation; either
Packit 6bd9ab
# version 2.1 of the License, or (at your option) any later version.
Packit 6bd9ab
#
Packit 6bd9ab
# This library is distributed in the hope that it will be useful,
Packit 6bd9ab
# but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 6bd9ab
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit 6bd9ab
# Lesser General Public License for more details.
Packit 6bd9ab
#
Packit 6bd9ab
# You should have received a copy of the GNU Lesser General Public
Packit 6bd9ab
# License along with this library; if not, write to the Free Software
Packit 6bd9ab
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
Packit 6bd9ab
# 02110-1301 USA
Packit 6bd9ab
Packit 6bd9ab
sbin_PROGRAMS = nslcd
Packit 6bd9ab
Packit 6bd9ab
AM_CPPFLAGS=-I$(top_srcdir)
Packit 6bd9ab
AM_CFLAGS = $(PTHREAD_CFLAGS)
Packit 6bd9ab
Packit 6bd9ab
nslcd_SOURCES = nslcd.c ../nslcd.h ../common/nslcd-prot.h \
Packit 6bd9ab
                ../compat/attrs.h \
Packit 6bd9ab
                log.c log.h \
Packit 6bd9ab
                daemonize.c daemonize.h \
Packit 6bd9ab
                common.c common.h \
Packit 6bd9ab
                myldap.c myldap.h \
Packit 6bd9ab
                cfg.c cfg.h \
Packit 6bd9ab
                attmap.c attmap.h \
Packit 6bd9ab
                nsswitch.c invalidator.c \
Packit 6bd9ab
                config.c alias.c ether.c group.c host.c netgroup.c network.c \
Packit 6bd9ab
                passwd.c protocol.c rpc.c service.c shadow.c pam.c usermod.c
Packit 6bd9ab
nslcd_LDADD = ../common/libtio.a ../common/libdict.a \
Packit 6bd9ab
              ../common/libexpr.a ../compat/libcompat.a \
Packit 6bd9ab
              @nslcd_LIBS@ @PTHREAD_LIBS@