]> jfr.im git - irc/quakenet/newserv.git/blob - rbl/Makefile
LUA: port luadb to dbapi2 to drop postgres dependency
[irc/quakenet/newserv.git] / rbl / Makefile
1 include ../build.mk
2
3 RBLDIRS=newsearch
4
5 .PHONY: all dirs $(RBLDIRS) clean distclean
6 all: rbl.so rbl_commands.so rbl_zonefile.so dirs
7
8 rbl.so: rbl.o
9
10 rbl_commands.so: rbl_commands.o
11
12 rbl_zonefile.so: rbl_zonefile.o
13
14 dirs: $(RBLDIRS)
15 ln -sf */*.so .
16
17 $(RBLDIRS):
18 cd $@ && $(MAKE) $(MFLAGS) all
19
20 clean:
21 rm -f */*.o */*.so *.o *.so
22 rm -rf */.deps .deps
23
24 distclean:
25