X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fngircd%2FMakefile.am;h=9b275e61481291be830d4cd42fc781fbf2700345;hb=ff2c1efae8b8b1bf30013123bb17243dc682f7d3;hp=83a331090f74ffe2d0cb2aab6a23c8afa6d1b61b;hpb=e68cdf304f1242bbeb3f0b59323f3059d0d543c4;p=ngircd-alex.git diff --git a/src/ngircd/Makefile.am b/src/ngircd/Makefile.am index 83a33109..9b275e61 100644 --- a/src/ngircd/Makefile.am +++ b/src/ngircd/Makefile.am @@ -1,36 +1,37 @@ # # ngIRCd -- The Next Generation IRC Daemon -# Copyright (c)2001,2002 by Alexander Barton (alex@barton.de) +# Copyright (c)2001-2003 by Alexander Barton (alex@barton.de) # -# Dieses Programm ist freie Software. Sie koennen es unter den Bedingungen -# der GNU General Public License (GPL), wie von der Free Software Foundation -# herausgegeben, weitergeben und/oder modifizieren, entweder unter Version 2 -# der Lizenz oder (wenn Sie es wuenschen) jeder spaeteren Version. -# Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste -# der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS. +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# Please read the file COPYING, README and AUTHORS for more information. # -# $Id: Makefile.am,v 1.32 2002/12/30 16:07:23 alex Exp $ +# $Id: Makefile.am,v 1.42 2003/12/04 14:05:16 alex Exp $ # AUTOMAKE_OPTIONS = ../portab/ansi2knr -INCLUDES = -I$(srcdir)/../portab +INCLUDES = -I$(srcdir)/../portab -I$(srcdir)/../tool LINTARGS = -weak -warnunixlib +unixlib -booltype BOOLEAN sbin_PROGRAMS = ngircd -ngircd_SOURCES = ngircd.c channel.c client.c conf.c conn.c conn-zip.c hash.c \ - irc.c irc-channel.c irc-info.c irc-login.c irc-mode.c irc-op.c irc-oper.c \ - irc-server.c irc-write.c lists.c log.c match.c parse.c resolve.c tool.c +ngircd_SOURCES = ngircd.c channel.c client.c conf.c conn.c conn-zip.c conn-func.c \ + hash.c irc.c irc-channel.c irc-info.c irc-login.c irc-mode.c irc-op.c \ + irc-oper.c irc-server.c irc-write.c lists.c log.c match.c parse.c \ + rendezvous.c resolve.c -ngircd_LDFLAGS = -L../portab +ngircd_LDFLAGS = -L../portab -L../tool -ngircd_LDADD = -lngportab +ngircd_LDADD = -lngportab -lngtool -noinst_HEADERS = ngircd.h channel.h client.h conf.h conn.h conn-zip.h hash.h \ - irc.h irc-channel.h irc-info.h irc-login.h irc-mode.h irc-op.h irc-oper.h \ - irc-server.h irc-write.h lists.h log.h match.h parse.h resolve.h tool.h \ +noinst_HEADERS = ngircd.h channel.h client.h conf.h conn.h conn-zip.h conn-func.h \ + hash.h irc.h irc-channel.h irc-info.h irc-login.h irc-mode.h irc-op.h \ + irc-oper.h irc-server.h irc-write.h lists.h log.h match.h parse.h \ + rendezvous.h resolve.h \ messages.h defines.h clean-local: @@ -60,14 +61,22 @@ lint: fi; \ done; -ngircd.c: cvs-date cvs-version.h +ngircd.c: cvs-version.h + +irc-login.c: cvs-version.h + +irc-info.c: cvs-version.h + +cvs-version.h: cvs-date cvs-date: grep VERSION ../config.h | grep "CVS" \ && echo "#define CVSDATE \"$$( grep "\$$Id" $(srcdir)/*.c \ - | awk "{ print \$$9 }" | sort | tail -n 1 )\"" > cvs-version.new \ + | $(AWK) "{ print \$$9 }" | sort | tail -1 \ + | sed -e "s/\//-/g" )\"" > cvs-version.new \ || echo "" > cvs-version.new - diff cvs-version.h cvs-version.new || cp cvs-version.new cvs-version.h + diff cvs-version.h cvs-version.new 2>/dev/null \ + || cp cvs-version.new cvs-version.h TESTS = check-version check-help