X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=src%2Fngircd%2FMakefile.am;h=75dc1e8b7d4ed12a982fd3a7ffaee7106ed343b5;hb=9fc7e66f6664130c27fc7e06884af1021d22d592;hp=8ef5b95320d0d2a6ee0b51829a32f8bac19321ab;hpb=0253bcc8af819b63ea80294ee08dd36b3bf546b5;p=ngircd-alex.git diff --git a/src/ngircd/Makefile.am b/src/ngircd/Makefile.am index 8ef5b953..75dc1e8b 100644 --- a/src/ngircd/Makefile.am +++ b/src/ngircd/Makefile.am @@ -9,9 +9,21 @@ # Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste # der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS. # -# $Id: Makefile.am,v 1.11 2002/02/21 17:25:16 alex Exp $ +# $Id: Makefile.am,v 1.15 2002/03/10 17:06:27 alex Exp $ # # $Log: Makefile.am,v $ +# Revision 1.15 2002/03/10 17:06:27 alex +# - das "localstatedir" wird fur "ngircd.err" angelegt. +# +# Revision 1.14 2002/03/03 17:15:11 alex +# - Source in weitere Module fuer IRC-Befehle aufgesplitted. +# +# Revision 1.13 2002/02/27 23:22:09 alex +# - einige Header umgestellt, neue Source-Dateien irc-xxx.c +# +# Revision 1.12 2002/02/21 18:47:49 alex +# - die Rechte der check-Scripts wurde nicht gesetzt. +# # Revision 1.11 2002/02/21 17:25:16 alex # - "check"-Target für "make check" und "make distcheck" begonnen ... # @@ -50,11 +62,14 @@ sbin_PROGRAMS = ngircd -ngircd_SOURCES = ngircd.c channel.c client.c conf.c conn.c irc.c log.c \ - parse.c tool.c +ngircd_SOURCES = ngircd.c channel.c client.c conf.c conn.c irc.c \ + irc-channel.c irc-login.c irc-mode.c irc-oper.c irc-server.c \ + irc-write.c log.c parse.c tool.c -noinst_HEADERS = ngircd.h channel.h client.h conf.h conn.h irc.h log.h \ - parse.h tool.h global.h messages.h defines.h +noinst_HEADERS = ngircd.h channel.h client.h conf.h conn.h irc.h \ + irc-channel.h irc-login.h irc-mode.h irc-oper.h irc-server.h \ + irc-write.h log.h parse.h tool.h \ + global.h messages.h defines.h clean-local: rm -f check-version check-help @@ -65,10 +80,15 @@ maintainer-clean-local: check-version: Makefile echo "#!/bin/sh" > check-version echo "./ngircd --version | grep version > /dev/null 2>&1" >> check-version + chmod 755 check-version check-help: Makefile echo "#!/bin/sh" > check-help echo "./ngircd --help | grep help > /dev/null 2>&1" >> check-help + chmod 755 check-help + +install-data-hook: + $(mkinstalldirs) $(DESTDIR)$(localstatedir) TESTS = check-version check-help