mirror of
https://github.com/isc-projects/bind9.git
synced 2026-02-25 19:04:57 -05:00
53 lines
1.4 KiB
Makefile
53 lines
1.4 KiB
Makefile
# Copyright (C) 1998, 1999, 2000 Internet Software Consortium.
|
|
#
|
|
# Permission to use, copy, modify, and 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 INTERNET SOFTWARE CONSORTIUM DISCLAIMS
|
|
# ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
|
|
# OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE
|
|
# CONSORTIUM 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.
|
|
|
|
srcdir = @srcdir@
|
|
VPATH = @srcdir@
|
|
top_srcdir = @top_srcdir@
|
|
|
|
@BIND9_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_mem
|
|
|
|
SRCS = t_mem.c
|
|
|
|
@BIND9_MAKE_RULES@
|
|
|
|
t_mem: t_mem.@O@ ${DEPLIBS}
|
|
${LIBTOOL} ${CC} -o $@ t_mem.@O@ ${LIBS}
|
|
|
|
test: t_mem
|
|
-@./t_mem -b @srcdir@ -q 300 -a
|
|
|
|
testhelp:
|
|
@./t_mem -h
|
|
|
|
clean distclean::
|
|
rm -f ${TARGETS}
|