Blame libasyncns/Makefile.am

Packit 6baad5
# This file is part of libasyncns.
Packit 6baad5
#
Packit 6baad5
# Copyright 2005-2008 Lennart Poettering
Packit 6baad5
#
Packit 6baad5
# libasyncns is free software; you can redistribute it and/or modify
Packit 6baad5
# it under the terms of the GNU Lesser General Public License as
Packit 6baad5
# published by the Free Software Foundation, either version 2.1 of the
Packit 6baad5
# License, or (at your option) any later version.
Packit 6baad5
#
Packit 6baad5
# libasyncns is distributed in the hope that it will be useful, but
Packit 6baad5
# WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 6baad5
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Packit 6baad5
# Lesser General Public License for more details.
Packit 6baad5
#
Packit 6baad5
# You should have received a copy of the GNU Lesser General Public
Packit 6baad5
# License along with libasyncns. If not, see
Packit 6baad5
# <http://www.gnu.org/licenses/>.
Packit 6baad5
Packit 6baad5
AM_CFLAGS=-D__EXTENSIONS__ $(PTHREAD_CFLAGS)
Packit 6baad5
Packit 6baad5
lib_LTLIBRARIES=libasyncns.la
Packit 6baad5
libasyncns_la_CC=$(PTHREAD_CC)
Packit 6baad5
libasyncns_la_SOURCES=asyncns.c asyncns.h
Packit 6baad5
libasyncns_la_LDFLAGS=-version-info $(LIBASYNCNS_VERSION_INFO) $(LDFLAGS_NOUNDEFINED)
Packit 6baad5
libasyncns_la_LIBADD=$(PTHREAD_LIBS)
Packit 6baad5
Packit 6baad5
check_PROGRAMS=asyncns-test
Packit 6baad5
asyncns_test_CC=$(PTHREAD_CC)
Packit 6baad5
asyncns_test_SOURCES=asyncns-test.c
Packit 6baad5
asyncns_test_LDADD=libasyncns.la $(PTHREAD_LIBS)
Packit 6baad5
Packit 6baad5
include_HEADERS=asyncns.h