1# for building the dlz_example driver we don't use
2# the bind9 build structure as the aim is to provide an
3# example that is separable from the bind9 source tree
4
5# this means this Makefile is not portable, so the testsuite
6# skips this test on platforms where it doesn't build
7
8CFLAGS=-fPIC -g
9
10all: dlz_example.so
11
12dlz_example.so: dlz_example.o
13	$(CC) $(CFLAGS) -shared -o dlz_example.so dlz_example.o
14
15clean:
16	rm -f dlz_example.o dlz_example.so
17