Blame libdaemon/Makefile.am

Packit ab56a9
# This file is part of libdaemon.
Packit ab56a9
#
Packit ab56a9
# Copyright 2003-2008 Lennart Poettering
Packit ab56a9
#
Packit ab56a9
# libdaemon is free software; you can redistribute it and/or modify it
Packit ab56a9
# under the terms of the GNU Lesser General Public License as
Packit ab56a9
# published by the Free Software Foundation, either version 2.1 of the
Packit ab56a9
# License, or (at your option) any later version.
Packit ab56a9
#
Packit ab56a9
# libdaemon is distributed in the hope that it will be useful, but
Packit ab56a9
# WITHOUT ANY WARRANTY; without even the implied warranty of
Packit ab56a9
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Packit ab56a9
# Lesser General Public License for more details.
Packit ab56a9
#
Packit ab56a9
# You should have received a copy of the GNU Lesser General Public
Packit ab56a9
# License along with libdaemon. If not, see
Packit ab56a9
# <http://www.gnu.org/licenses/>.
Packit ab56a9
Packit ab56a9
AM_CPPFLAGS='-DLOCALSTATEDIR="$(localstatedir)"'
Packit ab56a9
Packit ab56a9
pkginclude_HEADERS = \
Packit ab56a9
	dlog.h \
Packit ab56a9
	dfork.h \
Packit ab56a9
	dsignal.h \
Packit ab56a9
	dnonblock.h \
Packit ab56a9
	dpid.h \
Packit ab56a9
	dexec.h \
Packit ab56a9
	daemon.h
Packit ab56a9
Packit ab56a9
lib_LTLIBRARIES = libdaemon.la
Packit ab56a9
Packit ab56a9
libdaemon_la_SOURCES = \
Packit ab56a9
	dlog.c \
Packit ab56a9
	dfork.c \
Packit ab56a9
	dsignal.c \
Packit ab56a9
	dnonblock.c \
Packit ab56a9
	dpid.c \
Packit ab56a9
	dexec.c \
Packit ab56a9
	daemon.h \
Packit ab56a9
	$(pkg_include_HEADERS)
Packit ab56a9
Packit ab56a9
libdaemon_la_LDFLAGS = -version-info $(LIBDAEMON_VERSION_INFO) $(LDFLAGS_NOUNDEFINED)