Makefile.in revision 3ff55a3111fe09f517218905248974b8319b2c59
srcdir = @srcdir@
VPATH = @srcdir@
top_srcdir = @top_srcdir@
@BIND9_VERSION@
CINCLUDES = -I${srcdir}/../isc/unix/include \
-I${srcdir}/../isc/pthreads/include \
-I${srcdir}/../isc/include \
-I${srcdir}/include
CDEFINES =
CWARNINGS =
OBJS = name.o rbt.o rdata.o rdatalist.o rdataset.o \
result.o version.o rdataslab.o master.o
SUBDIRS = include
TARGETS = timestamp
@BIND9_MAKE_RULES@
version.o: version.c
${CC} ${ALL_CFLAGS} -DVERSION=\"${VERSION}\" -c $<
libdns.a: ${OBJS}
${AR} cruv $@ ${OBJS}
timestamp: libdns.a
${RANLIB} libdns.a
touch timestamp
installdirs:
if [ ! -d ${libdir} ]; then \
mkdir ${libdir} ; \
fi
install:: timestamp installdirs
${INSTALL_DATA} libdns.a ${libdir}
clean distclean::
rm -f libdns.a timestamp
rdata.o: code.h
code.h: gen
./gen > code.h
gen: gen.c
${CC} ${ALL_CFLAGS} -o $@ $?