mirror of
https://github.com/isc-projects/bind9.git
synced 2026-02-25 10:59:35 -05:00
28 lines
603 B
Makefile
28 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
|