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