Makefile revision 71bd858d8ed62672e7c23999dc7c02fd16a55089
830N/A# for building the dlz_example driver we don't use
830N/A# the bind9 build structure as the aim is to provide an
830N/A# example that is separable from the bind9 source tree
830N/A
919N/A# this means this Makefile is not portable, so the testsuite
919N/A# skips this test on platforms where it doesn't build
919N/A
919N/ACFLAGS=-fPIC -g
919N/A
830N/Aall: dlz_example.so
919N/A
919N/Adlz_example.so: dlz_example.o
919N/A $(CC) $(CFLAGS) -shared -o dlz_example.so dlz_example.o
830N/A
919N/Aclean:
919N/A rm -f dlz_example.o dlz_example.so
919N/A