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 420c96d1 2002-09-20 alex # $Id: Makefile.am,v 1.5 2002/09/20 15:08:12 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 069ca5df 2002-09-12 alex rm -rf logs tests *-test ngircd-test.log ngircd-test.motd ngircd-TEST procs.tmp
28 c4d78a34 2002-09-09 alex
29 c4d78a34 2002-09-09 alex maintainer-clean-local:
30 c4d78a34 2002-09-09 alex rm -f Makefile Makefile.in
31 c4d78a34 2002-09-09 alex
32 069ca5df 2002-09-12 alex check_SCRIPTS = ngircd-TEST tests.sh
33 c4d78a34 2002-09-09 alex
34 069ca5df 2002-09-12 alex ngircd-TEST:
35 420c96d1 2002-09-20 alex cp ../ngircd/ngircd ngircd-TEST
36 069ca5df 2002-09-12 alex
37 c4d78a34 2002-09-09 alex connect-test: tests.sh
38 069ca5df 2002-09-12 alex ln -s $(srcdir)/tests.sh connect-test
39 c4d78a34 2002-09-09 alex
40 c4d78a34 2002-09-09 alex channel-test: tests.sh
41 069ca5df 2002-09-12 alex ln -s $(srcdir)/tests.sh channel-test
42 c4d78a34 2002-09-09 alex
43 c4d78a34 2002-09-09 alex mode-test: tests.sh
44 069ca5df 2002-09-12 alex ln -s $(srcdir)/tests.sh mode-test
45 c4d78a34 2002-09-09 alex
46 c4d78a34 2002-09-09 alex TESTS = start-server.sh \
47 c4d78a34 2002-09-09 alex connect-test \
48 c4d78a34 2002-09-09 alex channel-test \
49 c4d78a34 2002-09-09 alex mode-test \
50 fc6f6474 2002-09-09 alex stress-server.sh \
51 c4d78a34 2002-09-09 alex stop-server.sh
52 c4d78a34 2002-09-09 alex
53 c4d78a34 2002-09-09 alex # -eof-