Blame


1 c4d78a34 2002-09-09 alex #
2 c4d78a34 2002-09-09 alex # ngIRCd -- The Next Generation IRC Daemon
3 c4d78a34 2002-09-09 alex # Copyright (c)2001,2002 by Alexander Barton (alex@barton.de)
4 c4d78a34 2002-09-09 alex #
5 c4d78a34 2002-09-09 alex # Dieses Programm ist freie Software. Sie koennen es unter den Bedingungen
6 c4d78a34 2002-09-09 alex # der GNU General Public License (GPL), wie von der Free Software Foundation
7 c4d78a34 2002-09-09 alex # herausgegeben, weitergeben und/oder modifizieren, entweder unter Version 2
8 c4d78a34 2002-09-09 alex # der Lizenz oder (wenn Sie es wuenschen) jeder spaeteren Version.
9 c4d78a34 2002-09-09 alex # Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste
10 c4d78a34 2002-09-09 alex # der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS.
11 c4d78a34 2002-09-09 alex #
12 797f9170 2002-11-10 alex # $Id: Makefile.am,v 1.9 2002/11/10 14:28:06 alex Exp $
13 c4d78a34 2002-09-09 alex #
14 c4d78a34 2002-09-09 alex
15 c4d78a34 2002-09-09 alex AUTOMAKE_OPTIONS = ../portab/ansi2knr
16 c4d78a34 2002-09-09 alex
17 c4d78a34 2002-09-09 alex INCLUDES = -I$(srcdir)/../portab
18 c4d78a34 2002-09-09 alex
19 fc6f6474 2002-09-09 alex EXTRA_DIST = \
20 efedfe12 2002-09-20 alex getpid.sh \
21 fc6f6474 2002-09-09 alex start-server.sh stop-server.sh tests.sh stress-server.sh \
22 fc6f6474 2002-09-09 alex connect-test.e channel-test.e mode-test.e \
23 069ca5df 2002-09-12 alex stress-A.e stress-B.e check-idle.e \
24 fc6f6474 2002-09-09 alex ngircd-test.conf
25 c4d78a34 2002-09-09 alex
26 c4d78a34 2002-09-09 alex clean-local:
27 b71db1a9 2002-09-20 alex rm -rf logs tests *-test ngircd-test.log ngircd-test.motd \
28 797f9170 2002-11-10 alex T-ngircd procs.tmp
29 c4d78a34 2002-09-09 alex
30 c4d78a34 2002-09-09 alex maintainer-clean-local:
31 c4d78a34 2002-09-09 alex rm -f Makefile Makefile.in
32 c4d78a34 2002-09-09 alex
33 7058a8c0 2002-09-20 alex check_SCRIPTS = ngircd-TEST-Binary tests.sh
34 c4d78a34 2002-09-09 alex
35 7058a8c0 2002-09-20 alex ngircd-TEST-Binary:
36 797f9170 2002-11-10 alex cp ../ngircd/ngircd T-ngircd
37 06cb1658 2002-09-20 alex [ -f getpid.sh ] || ln -s $(srcdir)/getpid.sh .
38 069ca5df 2002-09-12 alex
39 c4d78a34 2002-09-09 alex connect-test: tests.sh
40 069ca5df 2002-09-12 alex ln -s $(srcdir)/tests.sh connect-test
41 c4d78a34 2002-09-09 alex
42 c4d78a34 2002-09-09 alex channel-test: tests.sh
43 069ca5df 2002-09-12 alex ln -s $(srcdir)/tests.sh channel-test
44 c4d78a34 2002-09-09 alex
45 c4d78a34 2002-09-09 alex mode-test: tests.sh
46 069ca5df 2002-09-12 alex ln -s $(srcdir)/tests.sh mode-test
47 c4d78a34 2002-09-09 alex
48 c4d78a34 2002-09-09 alex TESTS = start-server.sh \
49 c4d78a34 2002-09-09 alex connect-test \
50 c4d78a34 2002-09-09 alex channel-test \
51 c4d78a34 2002-09-09 alex mode-test \
52 fc6f6474 2002-09-09 alex stress-server.sh \
53 c4d78a34 2002-09-09 alex stop-server.sh
54 c4d78a34 2002-09-09 alex
55 c4d78a34 2002-09-09 alex # -eof-