1 |
# Makefile for NickServ modules. |
2 |
# |
3 |
# IRC Services is copyright (c) 1996-2009 Andrew Church. |
4 |
# E-mail: <achurch@achurch.org> |
5 |
# Parts written by Andrew Kempe and others. |
6 |
# This program is free but copyrighted software; see the file GPL.txt for |
7 |
# details. |
8 |
|
9 |
########################################################################### |
10 |
|
11 |
include ../../Makefile.inc |
12 |
|
13 |
MODULES = main.so access.so autojoin.so link.so mail-auth.so |
14 |
OBJECTS-main.so = collide.o set.o util.o |
15 |
|
16 |
INCLUDES = nickserv.h ns-local.h $(TOPDIR)/language.h $(TOPDIR)/encrypt.h \ |
17 |
$(TOPDIR)/modules/memoserv/memoserv.h |
18 |
INCLUDES-collide.o = $(TOPDIR)/timeout.h |
19 |
INCLUDES-set.o = $(TOPDIR)/encrypt.h $(TOPDIR)/modules/operserv/operserv.h |
20 |
|
21 |
INCLUDES-main.o = $(TOPDIR)/commands.h $(TOPDIR)/databases.h \ |
22 |
$(TOPDIR)/encrypt.h $(TOPDIR)/modules/operserv/operserv.h |
23 |
INCLUDES-access.o = $(TOPDIR)/commands.h $(TOPDIR)/databases.h \ |
24 |
$(TOPDIR)/modules/operserv/operserv.h |
25 |
INCLUDES-autojoin.o = $(TOPDIR)/commands.h $(TOPDIR)/databases.h \ |
26 |
$(TOPDIR)/modules/operserv/operserv.h \ |
27 |
$(TOPDIR)/modules/chanserv/chanserv.h |
28 |
INCLUDES-link.o = $(TOPDIR)/commands.h \ |
29 |
$(TOPDIR)/modules/operserv/operserv.h |
30 |
INCLUDES-mail-auth.o = $(TOPDIR)/commands.h $(TOPDIR)/modules/mail/mail.h \ |
31 |
$(TOPDIR)/modules/operserv/operserv.h |
32 |
|
33 |
include ../Makerules |
34 |
|
35 |
########################################################################### |