No longer using automake

This commit is contained in:
Melinda Shore 2013-10-07 08:07:37 -07:00
parent 8806a0d5b1
commit 75cdad16ec
5 changed files with 0 additions and 34 deletions

View File

@ -1,8 +0,0 @@
#
# process with automake to produce Makefile.in
# files in each element of SUBDIRS
#
# Known to work with automake-1.12
#
SUBDIRS=src

View File

@ -1,8 +0,0 @@
SUBDIRS = . getdns example test
AM_CPPFLAGS = -Wall -Werror -g -fPIC -I$(srcdir)/ -I /usr/local/include -std=c99
lib_LTLIBRARIES = libgetdns.la
libgetdns_la_SOURCES = context.c convert.c \
dict.c general.c hostname.c list.c \
service.c sync.c validate_dnssec.c \
request-internal.c nameserver-internal.c \
util-internal.c getdns_error.c

View File

@ -1,10 +0,0 @@
AM_CPPFLAGS = -Wall -Werror -g -fPIC -I$(srcdir)/ -I/usr/local/include -I$(top_srcdir)/src -std=c99
AM_LDFLAGS =-L$(top_srcdir)/src -L/usr/local/lib -lgetdns -lldns -levent -lpthread
bin_PROGRAMS = example_all_functions example_synchronous \
example_simple_answers example_tree
example_all_functions_SOURCES = example_all_functions.c
example_synchronous_SOURCES = example_synchronous.c
example_simple_answers_SOURCES = example_simple_answers.c
example_tree_SOURCES = example_tree.c

View File

@ -1 +0,0 @@
pkginclude_HEADERS = getdns.h getdns_error.h

View File

@ -1,7 +0,0 @@
AM_CPPFLAGS = -Wall -Werror -g -fPIC -I$(srcdir)/ -I/usr/local/include -I$(top_srcdir)/src -std=c99
AM_LDFLAGS =-L$(top_srcdir)/src -L/usr/local/lib -lgetdns -lldns -lpthread -levent
noinst_PROGRAMS = tests_list tests_dict tests_stub_async tests_stub_sync
tests_list_SOURCES = tests_list.c testmessages.c
tests_dict_SOURCES = tests_dict.c testmessages.c
tests_stub_async_SOURCES = tests_stub_async.c testmessages.c
tests_stub_sync_SOURCES = tests_stub_sync.c