1 |
# |
2 |
# This is the Makefile for EGGDROP (the irc bot) |
3 |
# You should never need to edit this. |
4 |
# |
5 |
# $Id: Makefile.in,v 1.28 2001/11/11 20:24:44 guppy Exp $ |
6 |
|
7 |
SHELL = @SHELL@ |
8 |
top_srcdir = @top_srcdir@ |
9 |
srcdir = @srcdir@ |
10 |
VPATH = @srcdir@ |
11 |
|
12 |
@SET_MAKE@ |
13 |
prefix = @prefix@ |
14 |
DEST = @DEST@ |
15 |
EGGEXEC = @EGGEXEC@ |
16 |
EGGVERSION = @EGGVERSION@ |
17 |
|
18 |
# things you can put here: |
19 |
# -Wall if you're using gcc and it supports it |
20 |
# (configure usually detects this anyway now) |
21 |
# |
22 |
# -DDEBUG_ASSERT to enable assert debugging |
23 |
# -DDEBUG_MEM to be able to debug memory allocation (.debug) |
24 |
# These can both be set by using 'make debug' |
25 |
# or 'make sdebug' |
26 |
CFLGS = |
27 |
|
28 |
# configure SHOULD set these...you may need to tweak them to get modules |
29 |
# to compile .. if you do...let the devel-team know the working settings |
30 |
# btw to turn STRIP off, do 'STRIP = touch' not 'STRIP =' |
31 |
|
32 |
# defaults |
33 |
CC = @CC@ |
34 |
LD = @CC@ |
35 |
STRIP = @STRIP@ |
36 |
RANLIB = @RANLIB@ |
37 |
|
38 |
# make eggmod |
39 |
MOD_CC = @MOD_CC@ |
40 |
MOD_LD = @MOD_LD@ |
41 |
MOD_STRIP = @MOD_STRIP@ |
42 |
|
43 |
# make modules |
44 |
SHLIB_CC = @SHLIB_CC@ |
45 |
SHLIB_LD = @SHLIB_LD@ |
46 |
SHLIB_STRIP = @SHLIB_STRIP@ |
47 |
MOD_EXT = @MOD_EXT@ |
48 |
|
49 |
# programs make install uses |
50 |
LN_S = @LN_S@ |
51 |
INSTALL = @INSTALL@ |
52 |
INSTALL_PROGRAM = @INSTALL_PROGRAM@ |
53 |
INSTALL_DATA = @INSTALL_DATA@ |
54 |
INSTALL_SCRIPT = @INSTALL_SCRIPT@ |
55 |
|
56 |
# STOP STOP STOP STOP STOP STOP STOP STOP STOP STOP STOP STOP STOP STOP # |
57 |
# - - - - - - - - do not edit anything below this line. - - - - - - - - # |
58 |
# - - - - - - - - - it's all done by configure now. - - - - - - - - - # |
59 |
# STOP STOP STOP STOP STOP STOP STOP STOP STOP STOP STOP STOP STOP STOP # |
60 |
|
61 |
# stuff for Tcl |
62 |
XREQS = @TCL_REQS@ |
63 |
XLIBS = @TCL_LIBS@ @LIBS@ |
64 |
TCLLIB = @TCLLIB@ |
65 |
TCLLIBFN = @TCLLIBFN@ |
66 |
|
67 |
DEBCFLAGS = -DDEBUG_ASSERT -DDEBUG_MEM |
68 |
|
69 |
modconf = $(top_srcdir)/misc/modconfig --top_srcdir=$(top_srcdir) |
70 |
|
71 |
egg_test_run = EGG_LANGDIR=$(top_srcdir)/language ./$(EGGEXEC) -v |
72 |
|
73 |
post_config = echo "" && \ |
74 |
echo "You can now compile the bot, using \"make\"." && \ |
75 |
echo "" |
76 |
|
77 |
post_iconfig = $(modconf) update-depends && \ |
78 |
$(modconf) Makefile && \ |
79 |
(cd src/mod && $(MAKE_CONFIG) config) && \ |
80 |
$(modconf) Makefile |
81 |
|
82 |
egg_install_msg = echo "" && \ |
83 |
echo "Now run \"make install\" to install your bot." && \ |
84 |
echo "" |
85 |
|
86 |
MAKE_MODEGG = $(MAKE) 'MAKE=$(MAKE)' 'CC=$(MOD_CC)' 'LD=$(MOD_LD)' \ |
87 |
'STRIP=$(MOD_STRIP)' 'RANLIB=$(RANLIB)' 'CFLGS=$(CFLGS)' \ |
88 |
'TCLLIB=$(TCLLIB)' 'TCLLIBFN=$(TCLLIBFN)' 'XREQS=$(XREQS)' \ |
89 |
'XLIBS=$(XLIBS)' 'EGGEXEC=$(EGGEXEC)' 'EGGBUILD=' 'MODOBJS=' |
90 |
|
91 |
MAKE_MODULES = $(MAKE) 'MAKE=$(MAKE)' 'CC=$(SHLIB_CC)' 'LD=$(SHLIB_LD)' \ |
92 |
'STRIP=$(SHLIB_STRIP)' 'CFLGS=$(CFLGS)' 'XLIBS=$(XLIBS)' 'MOD_EXT=$(MOD_EXT)' |
93 |
|
94 |
MAKE_STATIC = $(MAKE) 'MAKE=$(MAKE)' 'CC=$(CC)' 'LD=$(LD)' \ |
95 |
'STRIP=$(STRIP)' 'RANLIB=$(RANLIB)' 'CFLGS=$(CFLGS) -DSTATIC' \ |
96 |
'TCLLIB=$(TCLLIB)' 'TCLLIBFN=$(TCLLIBFN)' 'XREQS=$(XREQS)' \ |
97 |
'XLIBS=$(XLIBS)' 'EGGEXEC=$(EGGEXEC)' 'EGGBUILD=(static version)' \ |
98 |
'MODOBJS=mod/*.o' |
99 |
|
100 |
MAKE_DEBEGG = $(MAKE) 'MAKE=$(MAKE)' 'CC=$(MOD_CC)' 'LD=$(MOD_LD) -g' \ |
101 |
'STRIP=touch' 'RANLIB=$(RANLIB)' 'CFLGS=-g3 $(DEBCFLAGS) $(CFLGS)' \ |
102 |
'TCLLIB=$(TCLLIB)' 'TCLLIBFN=$(TCLLIBFN)' 'XREQS=$(XREQS)' \ |
103 |
'XLIBS=$(XLIBS)' 'EGGEXEC=$(EGGEXEC)' 'EGGBUILD=(debug version)' 'MODOBJS=' |
104 |
|
105 |
MAKE_DEBMODULES = $(MAKE) 'MAKE=$(MAKE)' 'CC=$(SHLIB_CC)' 'LD=$(SHLIB_LD)' \ |
106 |
'XLIBS=$(XLIBS)' 'STRIP=touch' 'CFLGS=-g3 $(DEBCFLAGS) $(CFLGS)' \ |
107 |
'MOD_EXT=$(MOD_EXT)' |
108 |
|
109 |
MAKE_SDEBUG = $(MAKE) 'MAKE=$(MAKE)' 'CC=$(CC)' 'LD=$(LD) -g' \ |
110 |
'STRIP=touch' 'RANLIB=$(RANLIB)' 'CFLGS=-g3 $(DEBCFLAGS) -DSTATIC $(CFLGS)' \ |
111 |
'TCLLIB=$(TCLLIB)' 'TCLLIBFN=$(TCLLIBFN)' 'XREQS=$(XREQS)' 'XLIBS=$(XLIBS)' \ |
112 |
'EGGEXEC=$(EGGEXEC)' 'EGGBUILD=(static and debug version)' 'MODOBJS=mod/*.o' |
113 |
|
114 |
MAKE_DEPEND = $(MAKE) 'MAKE=$(MAKE)' 'CC=$(CC)' 'LD=$(LD)' \ |
115 |
'STRIP=$(STRIP)' 'CFLGS=$(CFLGS)' |
116 |
|
117 |
MAKE_CONFIG = $(MAKE) 'MAKE=$(MAKE)' |
118 |
|
119 |
MAKE_INSTALL = $(MAKE) 'MAKE=$(MAKE)' 'DEST=$(DEST)' |
120 |
|
121 |
all: @DEFAULT_MAKE@ |
122 |
|
123 |
eggclean: |
124 |
@rm -f $(EGGEXEC) *.$(MOD_EXT) *.stamp core DEBUG *~ |
125 |
@cd doc && $(MAKE) clean |
126 |
@cd scripts && $(MAKE) clean |
127 |
@cd src && $(MAKE) clean |
128 |
@cd src/md5 && $(MAKE) clean |
129 |
@cd src/compat && $(MAKE) clean |
130 |
|
131 |
clean: eggclean |
132 |
@cd src/mod && $(MAKE) clean |
133 |
|
134 |
distclean: eggclean clean-modconfig |
135 |
@cd src/mod && $(MAKE) distclean |
136 |
@rm -f Makefile doc/Makefile scripts/Makefile src/Makefile src/md5/Makefile src/compat/Makefile src/mod/Makefile |
137 |
@rm -f config.cache config.log config.status config.h lush.h |
138 |
@rm -rf autom4te.cache |
139 |
|
140 |
distrib: distclean |
141 |
@rm -f `find . \( -name '*~' -o -name '*#' -o -name '*.orig' \ |
142 |
-o -name '*.rej' -o -name '*.bak' \) -print` |
143 |
@rm -rf `find . \( -name 'CVS' \) -print` |
144 |
@(echo "all:"; \ |
145 |
echo " @echo \"\""; \ |
146 |
echo " @echo \"Before you can compile your bot you have to configure it.\""; \ |
147 |
echo " @echo \"So please start the configure script now:\""; \ |
148 |
echo " @echo \"\""; \ |
149 |
echo " @echo \" % ./configure\""; \ |
150 |
echo " @echo \"\""; ) > Makefile |
151 |
|
152 |
depend: |
153 |
@cat /dev/null > lush.h |
154 |
@cd src && $(MAKE_DEPEND) depend |
155 |
@cd src/md5 && $(MAKE_DEPEND) depend |
156 |
@cd src/mod && $(MAKE_DEPEND) depend |
157 |
@cd src/compat && $(MAKE_DEPEND) depend |
158 |
|
159 |
eggautoconf: |
160 |
@$(modconf) eggautoconf |
161 |
|
162 |
config: |
163 |
@$(modconf) modules-still-exist |
164 |
@$(modconf) detect-modules |
165 |
@$(modconf) update-depends |
166 |
@$(modconf) Makefile |
167 |
@cd src/mod && $(MAKE_CONFIG) config |
168 |
@$(modconf) Makefile |
169 |
@$(post_config) |
170 |
|
171 |
new-iconfig: |
172 |
@$(modconf) modules-still-exist |
173 |
@$(modconf) update-depends |
174 |
@$(modconf) -n configure |
175 |
@$(post_iconfig) |
176 |
@$(post_config) |
177 |
|
178 |
iconfig: |
179 |
@$(modconf) modules-still-exist |
180 |
@$(modconf) detect-modules |
181 |
@$(modconf) update-depends |
182 |
@$(modconf) configure |
183 |
@$(post_iconfig) |
184 |
@$(post_config) |
185 |
|
186 |
clean-modconfig: |
187 |
@rm -f .modules .known_modules |
188 |
|
189 |
conftest: |
190 |
@if test ! -f .modules; then \ |
191 |
echo ""; \ |
192 |
echo "You have NOT configured the modules yet. This has to be done"; \ |
193 |
echo "before you can start compiling."; \ |
194 |
echo ""; \ |
195 |
echo " Run \"make config\" or \"make iconfig\" now."; \ |
196 |
echo ""; \ |
197 |
exit 1; \ |
198 |
fi |
199 |
|
200 |
reconfig: clean-modconfig config |
201 |
|
202 |
eggdrop: modegg modules |
203 |
|
204 |
modegg: modtest |
205 |
@rm -f src/mod/mod.xlibs |
206 |
@cd src && $(MAKE_MODEGG) $(EGGEXEC) |
207 |
@echo "" |
208 |
@$(egg_test_run) |
209 |
@ls -l $(EGGEXEC) |
210 |
|
211 |
modules: modtest |
212 |
@cd src/mod && $(MAKE_MODULES) modules |
213 |
@echo "" |
214 |
@echo "modules made:" |
215 |
@ls -l *.$(MOD_EXT) |
216 |
@$(egg_install_msg) |
217 |
|
218 |
static: eggtest |
219 |
@echo "" |
220 |
@echo "Making module objects for static linking..." |
221 |
@echo "" |
222 |
@rm -f src/mod/mod.xlibs |
223 |
@cd src/mod && $(MAKE_STATIC) static |
224 |
@echo "" |
225 |
@echo "Making core eggdrop for static linking..." |
226 |
@echo "" |
227 |
@cd src && $(MAKE_STATIC) $(EGGEXEC) |
228 |
@echo "" |
229 |
@$(egg_test_run) |
230 |
@ls -l $(EGGEXEC) |
231 |
@$(egg_install_msg) |
232 |
|
233 |
debug: debegg debmodules |
234 |
|
235 |
debegg: modtest |
236 |
@cd src && $(MAKE_DEBEGG) $(EGGEXEC) |
237 |
@echo "" |
238 |
@$(egg_test_run) |
239 |
@ls -l $(EGGEXEC) |
240 |
|
241 |
debmodules: modtest |
242 |
@cd src/mod && $(MAKE_DEBMODULES) modules |
243 |
@echo "" |
244 |
@echo "modules made:" |
245 |
@ls -l *.$(MOD_EXT) |
246 |
@$(egg_install_msg) |
247 |
|
248 |
sdebug: eggtest |
249 |
@echo "" |
250 |
@echo "Making module objects for static linking..." |
251 |
@echo "" |
252 |
@rm -f src/mod/mod.xlibs |
253 |
@cd src/mod && $(MAKE_SDEBUG) static |
254 |
@echo "" |
255 |
@echo "Making core eggdrop for static linking..." |
256 |
@echo "" |
257 |
@cd src && $(MAKE_SDEBUG) $(EGGEXEC) |
258 |
@echo "" |
259 |
@$(egg_test_run) |
260 |
@ls -l $(EGGEXEC) |
261 |
@$(egg_install_msg) |
262 |
|
263 |
eggtest: conftest |
264 |
@if test -f EGGMOD.stamp; then \ |
265 |
echo "You're trying to do a STATIC build of eggdrop when you've";\ |
266 |
echo "already run 'make' for a module build.";\ |
267 |
echo "You must first type \"make clean\" before you can build";\ |
268 |
echo "a static version.";\ |
269 |
exit 1;\ |
270 |
fi |
271 |
@echo "stamp" >EGGDROP.stamp |
272 |
|
273 |
modtest: conftest |
274 |
@if [ -f EGGDROP.stamp ]; then \ |
275 |
echo "You're trying to do a MODULE build of eggdrop when you've";\ |
276 |
echo "already run 'make' for a static build.";\ |
277 |
echo "You must first type \"make clean\" before you can build";\ |
278 |
echo "a module version.";\ |
279 |
exit 1;\ |
280 |
fi |
281 |
@echo "stamp" >EGGMOD.stamp |
282 |
|
283 |
install: ainstall |
284 |
|
285 |
dinstall: eggdrop ainstall |
286 |
|
287 |
sinstall: static ainstall |
288 |
|
289 |
ainstall: install-start install-bin install-modules install-data \ |
290 |
install-help install-language install-filesys install-doc \ |
291 |
install-scripts install-end |
292 |
|
293 |
install-start: |
294 |
@if test ! -f $(EGGEXEC); then \ |
295 |
echo ""; \ |
296 |
echo "You haven't compiled eggdrop yet."; \ |
297 |
echo "To compile eggdrop use:"; \ |
298 |
echo " make <target>"; \ |
299 |
echo ""; \ |
300 |
echo " valid targets: eggdrop static debug sdebug"; \ |
301 |
echo ""; \ |
302 |
exit 1; \ |
303 |
fi |
304 |
@if test "x$(DEST)" = "x"; then \ |
305 |
echo "You must specify a destination directory with DEST="; \ |
306 |
exit 1; \ |
307 |
fi |
308 |
@echo "" |
309 |
@$(egg_test_run) |
310 |
@echo |
311 |
@echo "Installing in directory: '$(DEST)'." |
312 |
@echo |
313 |
@if test ! -d $(DEST); then \ |
314 |
echo "Creating directory: $(DEST)."; \ |
315 |
$(top_srcdir)/misc/mkinstalldirs $(DEST); \ |
316 |
fi |
317 |
|
318 |
install-bin: |
319 |
@if test -f $(DEST)/o$(EGGEXEC); then \ |
320 |
rm -f $(DEST)/o$(EGGEXEC); \ |
321 |
fi |
322 |
@if test -h $(DEST)/$(EGGEXEC); then \ |
323 |
echo "Removing symlink to archival eggdrop binary."; \ |
324 |
rm -f $(DEST)/$(EGGEXEC); \ |
325 |
fi |
326 |
@if test -f $(DEST)/$(EGGEXEC); then \ |
327 |
echo "Renamed the old '$(EGGEXEC)' executable to 'o$(EGGEXEC)'."; \ |
328 |
mv -f $(DEST)/$(EGGEXEC) $(DEST)/o$(EGGEXEC); \ |
329 |
fi |
330 |
@echo "Copying new '$(EGGEXEC)' executable and creating symlink." |
331 |
@$(INSTALL_PROGRAM) $(EGGEXEC) $(DEST)/$(EGGEXEC)-$(EGGVERSION) |
332 |
@(cd $(DEST) && $(LN_S) $(EGGEXEC)-$(EGGVERSION) $(EGGEXEC)) |
333 |
|
334 |
install-modules: |
335 |
@if test -h $(DEST)/modules; then \ |
336 |
echo "Removing symlink to archival modules directory."; \ |
337 |
rm -f $(DEST)/modules; \ |
338 |
fi |
339 |
@if test -d $(DEST)/modules; then \ |
340 |
echo "Moving old modules into 'modules.old' directory."; \ |
341 |
rm -rf $(DEST)/modules.old; \ |
342 |
mv -f $(DEST)/modules $(DEST)/modules.old; \ |
343 |
fi |
344 |
@if test ! "x`echo *.$(MOD_EXT)`" = "x*.$(MOD_EXT)"; then \ |
345 |
if test ! -d $(DEST)/modules-$(EGGVERSION); then \ |
346 |
echo "Creating modules-$(EGGVERSION) directory and symlink."; \ |
347 |
$(top_srcdir)/misc/mkinstalldirs $(DEST)/modules-$(EGGVERSION); \ |
348 |
fi; \ |
349 |
(cd $(DEST) && $(LN_S) modules-$(EGGVERSION) modules); \ |
350 |
echo "Copying new modules."; \ |
351 |
for i in *.$(MOD_EXT); do \ |
352 |
$(INSTALL_PROGRAM) $$i $(DEST)/modules-$(EGGVERSION)/; \ |
353 |
done; \ |
354 |
fi |
355 |
|
356 |
install-data: |
357 |
@$(INSTALL_DATA) $(srcdir)/eggdrop.advanced.conf $(DEST) |
358 |
@$(INSTALL_DATA) $(srcdir)/eggdrop.complete.conf $(DEST) |
359 |
@$(INSTALL_DATA) $(srcdir)/eggdrop.simple.conf $(DEST) |
360 |
@if test ! -d $(DEST)/logs; then \ |
361 |
echo "Creating 'logs' subdirectory."; \ |
362 |
$(top_srcdir)/misc/mkinstalldirs $(DEST)/logs; \ |
363 |
$(INSTALL_DATA) $(srcdir)/logs/CONTENTS $(DEST)/logs/; \ |
364 |
fi; |
365 |
@if test ! -d $(DEST)/text; then \ |
366 |
echo "Creating 'text' subdirectory."; \ |
367 |
$(top_srcdir)/misc/mkinstalldirs $(DEST)/text; \ |
368 |
fi; |
369 |
@if test ! -f $(DEST)/text/motd; then \ |
370 |
$(INSTALL_DATA) $(srcdir)/text/motd $(DEST)/text/; \ |
371 |
fi |
372 |
@if test ! -f $(DEST)/text/banner; then \ |
373 |
$(INSTALL_DATA) $(srcdir)/text/banner $(DEST)/text/; \ |
374 |
fi |
375 |
|
376 |
install-help: |
377 |
@echo "Copying help files." |
378 |
@if test ! "x`echo $(srcdir)/help/*.help`" = "x$(srcdir)/help/*.help"; then \ |
379 |
if test ! -d $(DEST)/help; then \ |
380 |
echo "Creating 'help' subdirectory."; \ |
381 |
$(top_srcdir)/misc/mkinstalldirs $(DEST)/help; \ |
382 |
fi; \ |
383 |
for i in $(srcdir)/help/*.help; do \ |
384 |
$(INSTALL_DATA) $$i $(DEST)/help/; \ |
385 |
done; \ |
386 |
fi |
387 |
@if test ! "x`echo $(srcdir)/help/msg/*.help`" = "x$(srcdir)/help/msg/*.help"; then \ |
388 |
if test ! -d $(DEST)/help/msg; then \ |
389 |
echo "Creating 'help/msg' subdirectory."; \ |
390 |
$(top_srcdir)/misc/mkinstalldirs $(DEST)/help/msg; \ |
391 |
fi; \ |
392 |
for i in $(srcdir)/help/msg/*.help; do \ |
393 |
$(INSTALL_DATA) $$i $(DEST)/help/msg/; \ |
394 |
done; \ |
395 |
fi |
396 |
@if test ! "x`echo $(srcdir)/help/set/*.help`" = "x$(srcdir)/help/set/*.help"; then \ |
397 |
if test ! -d $(DEST)/help/set; then \ |
398 |
echo "Creating 'help/set' subdirectory."; \ |
399 |
$(top_srcdir)/misc/mkinstalldirs $(DEST)/help/set; \ |
400 |
fi; \ |
401 |
for i in $(srcdir)/help/set/*.help; do \ |
402 |
$(INSTALL_DATA) $$i $(DEST)/help/set/; \ |
403 |
done; \ |
404 |
fi |
405 |
@cd src/mod/ && $(MAKE_INSTALL) install-help |
406 |
|
407 |
install-language: |
408 |
@echo "Copying language files." |
409 |
@if test ! "x`echo $(srcdir)/language/*.lang`" = "x$(srcdir)/language/*.lang"; then \ |
410 |
if test ! -d $(DEST)/language; then \ |
411 |
echo "Creating 'language' subdirectory."; \ |
412 |
$(top_srcdir)/misc/mkinstalldirs $(DEST)/language; \ |
413 |
fi; \ |
414 |
for i in $(srcdir)/language/*.lang; do \ |
415 |
$(INSTALL_DATA) $$i $(DEST)/language/; \ |
416 |
done; \ |
417 |
fi |
418 |
@cd src/mod && $(MAKE_INSTALL) install-language |
419 |
|
420 |
install-filesys: |
421 |
@if test ! -d $(DEST)/filesys; then \ |
422 |
echo "Creating a skeletal filesys subdirectory."; \ |
423 |
$(top_srcdir)/misc/mkinstalldirs $(DEST)/filesys; \ |
424 |
$(top_srcdir)/misc/mkinstalldirs $(DEST)/filesys/incoming; \ |
425 |
fi |
426 |
|
427 |
install-doc: |
428 |
@$(INSTALL_DATA) $(srcdir)/README $(DEST) |
429 |
@cd doc/ && $(MAKE_INSTALL) install |
430 |
|
431 |
install-scripts: |
432 |
@cd scripts/ && $(MAKE_INSTALL) install |
433 |
|
434 |
install-end: |
435 |
@echo |
436 |
@echo "Installation completed." |
437 |
@echo "" |
438 |
@echo "You MUST ensure that you edit/verify your configuration file." |
439 |
@echo "Use one of the three configuration files (eggdrop.simple.conf, eggdrop.advanced.conf and eggdrop.complete.conf) distributed with your bot." |
440 |
@echo "" |
441 |
@echo "Remember to change directory to $(DEST) before you proceed." |
442 |
@echo "" |
443 |
|
444 |
#safety hash |