-
Notifications
You must be signed in to change notification settings - Fork 14
/
Makefile.am
184 lines (166 loc) · 4.1 KB
/
Makefile.am
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
## $Id: Makefile.am,v 1.26 2007/08/28 16:09:56 dan_karrels Exp $
## test
@SET_MAKE@
SUBDIRS = libltdl $(NEW_MODS)
lib_LTLIBRARIES =
noinst_LTLIBRARIES =
pkgdata_DATA = bin/server_command_map
EXTRA_DIST = bin/ccontrol.example.conf \
bin/chanfix.example.conf \
bin/clientExample.example.conf \
bin/cloner.example.conf \
bin/cservice.example.conf \
bin/dronescan.example.conf \
bin/gnutest.example.conf \
bin/GNUWorld.example.conf \
bin/nickserv.example.conf \
bin/openchanfix.example.conf \
bin/scanner.example.conf \
bin/stats.example.conf \
contrib/00INDEX.TXT \
contrib/chktrans.py \
contrib/encrypt.sh \
doc/README.pgsql \
doc/README \
doc/README.appjudge \
doc/README.ccontrol \
doc/README.cservice \
doc/README.dronescan \
doc/README.sharedmemory \
doc/autokill.sql \
doc/ccontrol.addme.sql \
doc/ccontrol.commands.sql \
doc/ccontrol.help.sql \
doc/ccontrol.sql \
doc/ccontrol.update.sql \
doc/checkvarargs.py \
doc/chktrans.py \
doc/cparse.py \
doc/cservice.addme.sql \
doc/cservice.config.sql \
doc/cservice.help.sql \
doc/cservice.sql \
doc/cservice.web.sql \
doc/dronescan.sql \
doc/genhelp.py \
doc/grant.sql \
doc/greeting.sql \
doc/language_christmas.sql \
doc/language_dutch.sql \
doc/language_easter.sql \
doc/language_german.sql \
doc/language_greek.sql \
doc/language_halloween.sql \
doc/language_swedish.sql \
doc/language_table.sql \
doc/languages.sql \
doc/local_db.sql \
doc/motd.sql \
doc/movetables \
doc/notes.sql \
doc/README \
doc/README.appjudge \
doc/README.ccontrol \
doc/README.cservice \
doc/README.pgsql \
doc/README.sharedmemory \
doc/update.channels.sql \
doc/update_complaints_20031020.sql \
doc/update_complaints_20031026.sql \
doc/update_complaints.sql \
doc/update.delete.sql \
doc/update.gfxcode.sql \
doc/update.statistics.sql \
doc/update_fraud_lists.sql \
doc/update.statistics.sql \
doc/update_themes.sql \
doc/update_tzmove_l.sql \
doc/update_tzmove_r.sql \
doc/cmaster/maint/cleanup_traffic.sql \
doc/cmaster/maint/enc_pass.sh \
doc/cmaster/maint/fixDOS.sh \
doc/cmaster/maint/Manager1K.sh \
doc/cmaster/maint/WipeUser.sh \
doc/cmaster/regproc/appjudge \
doc/cmaster/regproc/appjudge-config \
doc/cmaster/regproc/cron-judge.in \
doc/cmaster/regproc/cycle-judge \
doc/cmaster/website/faq.html \
doc/cmaster/website/index.html \
doc/cmaster/website/install.html \
doc/cmaster/website/manual.html \
doc/cmaster/website/web.html \
doc/idoc/index.php \
doc/idoc/README \
doc/nickserv/nickserv.sql \
doc/nickserv/INSTALL \
doc/nickserv/USAGE \
include/defs.h \
include/Channel.h \
include/ChannelUser.h \
include/Gline.h \
include/LoadClientTimerHandler.h \
include/Network.h \
include/NetworkTarget.h \
include/Numeric.h \
include/ServerCommandHandler.h \
include/ServerTimerHandlers.h \
include/Timer.h \
include/TimerHandler.h \
include/UnloadClientTimerHandler.h \
include/client.h \
include/events.h \
include/iClient.h \
include/iServer.h \
include/ip.h \
include/gnuworld_config.h \
include/gw_hashmap.h \
include/moduleLoader.h \
include/server.h \
libltdl/acconfig.h \
libltdl/ltdl.h \
libltdl/config.h \
tools/checkgnuworld.sh
include db/Makefile.am
include libgnuworld/Makefile.am
include libircu/Makefile.am
include src/Makefile.am
if COND_MODCCONTROL
include $(srcdir)/mod.ccontrol/Makefile.am
endif
if COND_MODCHANFIX
include $(srcdir)/mod.chanfix/Makefile.am
endif
if COND_MODCLIENTEXAMPLE
include $(srcdir)/mod.clientExample/Makefile.am
endif
if COND_MODCLONER
include $(srcdir)/mod.cloner/Makefile.am
endif
if COND_MODCSERVICE
include $(srcdir)/mod.cservice/Makefile.am
endif
if COND_MODDRONESCAN
include $(srcdir)/mod.dronescan/Makefile.am
endif
if COND_MODGNUTEST
include $(srcdir)/mod.gnutest/Makefile.am
endif
if COND_MODNICKSERV
include $(srcdir)/mod.nickserv/Makefile.am
endif
if COND_MODOPENCHANFIX
include $(srcdir)/mod.openchanfix/Makefile.am
endif
if COND_MODSCANNER
include $(srcdir)/mod.scanner/Makefile.am
endif
if COND_MODSTATS
include $(srcdir)/mod.stats/Makefile.am
endif
if COND_MODSNOOP
include $(srcdir)/mod.snoop/Makefile.am
endif
if COND_TESTDIR
include $(srcdir)/test/Makefile.am
endif