Makefile revision 71bd858d8ed62672e7c23999dc7c02fd16a55089
94694e720a911a38b01ff5036c01d883b3c9cbb1Evan Hunt# for building the dlz_example driver we don't use
94694e720a911a38b01ff5036c01d883b3c9cbb1Evan Hunt# the bind9 build structure as the aim is to provide an
94694e720a911a38b01ff5036c01d883b3c9cbb1Evan Hunt# example that is separable from the bind9 source tree
94694e720a911a38b01ff5036c01d883b3c9cbb1Evan Hunt
e24ec1cb1238c734ac2b2ab86c189479aa426422Mark Andrews# this means this Makefile is not portable, so the testsuite
# skips this test on platforms where it doesn't build
CFLAGS=-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