blob: ac4ed43c0ed122e555b11313f0eae5b10dae6667 (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
# Copyright (c) 2003-2004 E. Will et al.
# Copyright (c) 2016-2018 ChatLounge IRC Network Development Team
#
# Rights to this code are documented in doc/LICENSE.
#
# This file contains build instructions.
#
# $Id: Makefile.in 8375 2007-06-03 20:03:26Z pippijn $
#
MODULE = nickserv
BASE_SRCS = \
main.c \
access.c \
badmail.c \
cert.c \
$(CRACKLIB_C) \
drop.c \
enforce.c \
freeze.c \
fgroup.c \
ghost.c \
group.c \
help.c \
history.c \
hold.c \
identify.c \
info.c \
info_lastquit.c \
list.c \
listchans.c \
listgroups.c \
listmail.c \
listnicks.c \
listownmail.c \
login.c \
loginhistory.c \
logout.c \
mark.c \
multimark.c \
register.c \
regnolimit.c \
resetstrictaccess.c \
resetpass.c \
restrict.c \
return.c \
sendpass.c \
sendpass_user.c \
set.c \
set_core.c \
set_accountname.c \
set_email.c \
set_emailmemos.c \
set_emailnotify.c \
set_enforcetime.c \
set_hidemail.c \
set_language.c \
set_nevergroup.c \
set_neverop.c \
set_nogreet.c \
set_nomemo.c \
set_noop.c \
set_nopassword.c \
set_notifyacl.c \
set_notifyset.c \
set_notifymemo.c \
set_password.c \
set_privmsg.c \
set_private.c \
set_property.c \
set_pubkey.c \
set_quietchg.c \
set_strictaccess.c \
setpass.c \
status.c \
taxonomy.c \
vacation.c \
verify.c \
vhost.c
SRCS = ${BASE_SRCS} ${EXTRA_SRCS}
include ../../extra.mk
include ../../buildsys.mk
include ../../buildsys.module.mk
CPPFLAGS += -I../../include
LIBS += -L../../libathemecore -lathemecore ${LDFLAGS_RPATH} ${CRACKLIB_LIBS}
|