
Also known as ISC bind. This import adds utilities such as host(1), dig(1), and nslookup(1), as well as many other tools and libraries. Change-Id: I035ca46e64f1965d57019e773f4ff0ef035e4aa3
29 lines
603 B
Makefile
29 lines
603 B
Makefile
# Copyright (C) 2000, 2001 Nominum, Inc. All Rights Reserved.
|
|
|
|
CC = @CC@
|
|
LIBOBJS = @LIBOBJS@
|
|
LIBS = @LIBS@
|
|
DEFS = @DEFS@
|
|
|
|
queryperf: queryperf.o $(LIBOBJS)
|
|
$(CC) $(CFLAGS) $(DEFS) $(LDFLAGS) queryperf.o $(LIBOBJS) $(LIBS) -lm -o queryperf
|
|
|
|
queryperf.o: queryperf.c
|
|
$(CC) $(CFLAGS) $(DEFS) -c queryperf.c
|
|
|
|
# under missing subdir
|
|
getaddrinfo.o: ./missing/getaddrinfo.c
|
|
$(CC) $(CFLAGS) -c ./missing/$*.c
|
|
|
|
getnameinfo.o: ./missing/getnameinfo.c
|
|
$(CC) $(CFLAGS) -c ./missing/$*.c
|
|
|
|
clean:
|
|
rm -f *.o queryperf
|
|
|
|
distclean: clean
|
|
rm -f config.log
|
|
rm -f config.cache
|
|
rm -f config.status
|
|
rm -f Makefile
|