]> jfr.im git - irc/quakenet/newserv.git/blame - rbl/Makefile
Merge pull request #132 from retropc/lua_country
[irc/quakenet/newserv.git] / rbl / Makefile
CommitLineData
67af3857
GB
1include ../build.mk
2
3RBLDIRS=newsearch
4
5.PHONY: all dirs $(RBLDIRS) clean distclean
6all: rbl.so rbl_commands.so rbl_zonefile.so dirs
7
8rbl.so: rbl.o
9
10rbl_commands.so: rbl_commands.o
11
12rbl_zonefile.so: rbl_zonefile.o
13
14dirs: $(RBLDIRS)
15 ln -sf */*.so .
16
17$(RBLDIRS):
18 cd $@ && $(MAKE) $(MFLAGS) all
19
20clean:
21 rm -f */*.o */*.so *.o *.so
22 rm -rf */.deps .deps
23
24distclean:
25