From: Jelte Jansen Date: Wed, 15 Mar 2006 08:14:09 +0000 (+0000) Subject: renamed compiletest to linktest X-Git-Tag: release-1.1.0~287 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4ffd8417bf8bcb2c79befc0d113dd7d23a1e5778;p=thirdparty%2Fldns.git renamed compiletest to linktest replaced -lldns with $(LDFLAGS) for correct linking with any optional libraries like ssl --- diff --git a/Makefile.in b/Makefile.in index fcae7bc0..9e64af6a 100644 --- a/Makefile.in +++ b/Makefile.in @@ -76,11 +76,11 @@ LINK_LIB = $(LIBTOOL) --mode=link $(CC) $(CFLAGS) $(LDFLAGS) -release $(VERSION) .PHONY: install-h uninstall-h install-lib uninstall-lib .PHONY: confdrill tools-drill -all: lib compiletest +all: lib linktest -compiletest: - gcc $(srcdir)/compiletest.c -Iinclude .libs/libldns.a -lldns -o compiletest - rm compiletest +linktest: + gcc $(srcdir)/linktest.c -Iinclude .libs/libldns.a $(LDFLAGS) -o linktest + rm linktest ./drill/Makefile: ( $(INSTALL) -d drill ; cd drill ; ../$(srcdir)/drill/configure --prefix=$(prefix) --bindir=$(bindir) --mandir=$(mandir) LDFLAGS="-L../.libs" CPPFLAGS="-I.. -I../..") diff --git a/compiletest.c b/linktest.c similarity index 100% rename from compiletest.c rename to linktest.c