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
17 lines
454 B
Makefile
17 lines
454 B
Makefile
# for building the dlz_example driver we don't use
|
|
# the bind9 build structure as the aim is to provide an
|
|
# example that is separable from the bind9 source tree
|
|
|
|
# this means this Makefile is not portable, so the testsuite
|
|
# skips this test on platforms where it doesn't build
|
|
|
|
CFLAGS=-Wall -fPIC -g
|
|
|
|
all: dlz_example.so
|
|
|
|
dlz_example.so: dlz_example.o
|
|
$(CC) $(CFLAGS) -shared -o dlz_example.so dlz_example.o
|
|
|
|
clean:
|
|
rm -f dlz_example.o dlz_example.so
|