From f50ae72ec3417cae55dd4e085991c01af9fdc5f1 Mon Sep 17 00:00:00 2001 From: Martin Nagy Date: Wed, 11 Feb 2009 20:37:59 +0100 Subject: Initial commit --- bin/tests/tasks/Makefile.in | 55 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 bin/tests/tasks/Makefile.in (limited to 'bin/tests/tasks/Makefile.in') diff --git a/bin/tests/tasks/Makefile.in b/bin/tests/tasks/Makefile.in new file mode 100644 index 0000000..f7fc908 --- /dev/null +++ b/bin/tests/tasks/Makefile.in @@ -0,0 +1,55 @@ +# Copyright (C) 2004, 2007 Internet Systems Consortium, Inc. ("ISC") +# Copyright (C) 1998-2002 Internet Software Consortium. +# +# Permission to use, copy, modify, and/or distribute this software for any +# purpose with or without fee is hereby granted, provided that the above +# copyright notice and this permission notice appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH +# REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY +# AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, +# INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM +# LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE +# OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +# PERFORMANCE OF THIS SOFTWARE. + +# $Id: Makefile.in,v 1.30 2007/06/19 23:47:07 tbox Exp $ + +srcdir = @srcdir@ +VPATH = @srcdir@ +top_srcdir = @top_srcdir@ + +@BIND9_MAKE_INCLUDES@ + +CINCLUDES = ${TEST_INCLUDES} ${ISC_INCLUDES} + +CDEFINES = +CWARNINGS = + +ISCLIBS = ../../../lib/isc/libisc.@A@ +TAPIDEPLIBS = ../../../lib/tests/libt_api.@A@ + +ISCDEPLIBS = ../../../lib/isc/libisc.@A@ +TAPILIBS = ../../../lib/tests/libt_api.@A@ + +DEPLIBS = ${TAPIDEPLIBS} ${ISCDEPLIBS} + +LIBS = ${TAPILIBS} ${ISCLIBS} @LIBS@ + +TARGETS = t_tasks@EXEEXT@ + +SRCS = t_tasks.c + +@BIND9_MAKE_RULES@ + +t_tasks@EXEEXT@: t_tasks.@O@ ${DEPLIBS} + ${LIBTOOL_MODE_LINK} ${PURIFY} ${CC} ${CFLAGS} ${LDFLAGS} -o $@ t_tasks.@O@ ${LIBS} + +test: t_tasks@EXEEXT@ + -@./t_tasks@EXEEXT@ -c @top_srcdir@/t_config -b @srcdir@ -a + +testhelp: + @./t_tasks@EXEEXT@ -h + +clean distclean:: + rm -f ${TARGETS} -- cgit