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 68f896ee 2007-11-18 alex # $Id: Makefile.am,v 1.15 2007/11/18 15:07:16 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 ceafdf10 2004-09-08 alex README functions.inc getpid.sh \
21 fc6f6474 2002-09-09 alex start-server.sh stop-server.sh tests.sh stress-server.sh \
22 ade1e2eb 2004-09-04 alex test-loop.sh wait-tests.sh \
23 fc6f6474 2002-09-09 alex connect-test.e channel-test.e mode-test.e \
24 069ca5df 2002-09-12 alex stress-A.e stress-B.e check-idle.e \
25 fc6f6474 2002-09-09 alex ngircd-test.conf
26 c4d78a34 2002-09-09 alex
27 ceef0580 2004-09-06 alex all:
28 02b8e515 2004-09-04 alex
29 c4d78a34 2002-09-09 alex clean-local:
30 b71db1a9 2002-09-20 alex rm -rf logs tests *-test ngircd-test.log ngircd-test.motd \
31 797f9170 2002-11-10 alex T-ngircd procs.tmp
32 c4d78a34 2002-09-09 alex
33 c4d78a34 2002-09-09 alex maintainer-clean-local:
34 c4d78a34 2002-09-09 alex rm -f Makefile Makefile.in
35 c4d78a34 2002-09-09 alex
36 7058a8c0 2002-09-20 alex check_SCRIPTS = ngircd-TEST-Binary tests.sh
37 c4d78a34 2002-09-09 alex
38 7058a8c0 2002-09-20 alex ngircd-TEST-Binary:
39 797f9170 2002-11-10 alex cp ../ngircd/ngircd T-ngircd
40 06cb1658 2002-09-20 alex [ -f getpid.sh ] || ln -s $(srcdir)/getpid.sh .
41 069ca5df 2002-09-12 alex
42 c4d78a34 2002-09-09 alex connect-test: tests.sh
43 68f896ee 2007-11-18 alex rm -f connect-test
44 069ca5df 2002-09-12 alex ln -s $(srcdir)/tests.sh connect-test
45 c4d78a34 2002-09-09 alex
46 c4d78a34 2002-09-09 alex channel-test: tests.sh
47 68f896ee 2007-11-18 alex rm -f channel-test
48 069ca5df 2002-09-12 alex ln -s $(srcdir)/tests.sh channel-test
49 c4d78a34 2002-09-09 alex
50 c4d78a34 2002-09-09 alex mode-test: tests.sh
51 68f896ee 2007-11-18 alex rm -f mode-test
52 069ca5df 2002-09-12 alex ln -s $(srcdir)/tests.sh mode-test
53 c4d78a34 2002-09-09 alex
54 c4d78a34 2002-09-09 alex TESTS = start-server.sh \
55 c4d78a34 2002-09-09 alex connect-test \
56 c4d78a34 2002-09-09 alex channel-test \
57 c4d78a34 2002-09-09 alex mode-test \
58 fc6f6474 2002-09-09 alex stress-server.sh \
59 c4d78a34 2002-09-09 alex stop-server.sh
60 c4d78a34 2002-09-09 alex
61 c4d78a34 2002-09-09 alex # -eof-