- Version 0.0.1

This commit is contained in:
Alexander Barton 2001-12-31 16:02:30 +00:00
parent a163f49660
commit 3cc72cdf27
1 changed files with 13 additions and 3 deletions

View File

@ -9,9 +9,12 @@
# Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste
# der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS.
#
# $Id: configure.in,v 1.12 2001/12/31 02:21:00 alex Exp $
# $Id: configure.in,v 1.13 2001/12/31 16:02:30 alex Exp $
#
# $Log: configure.in,v $
# Revision 1.13 2001/12/31 16:02:30 alex
# - Version 0.0.1
#
# Revision 1.12 2001/12/31 02:21:00 alex
# - "doc"-Unterverzeichnis aufgenommen.
#
@ -53,7 +56,7 @@
AC_INIT
AC_CONFIG_SRCDIR(src/ngircd/ngircd.c)
AM_INIT_AUTOMAKE(ngircd,0.0.1-pre)
AM_INIT_AUTOMAKE(ngircd,0.0.1)
AM_CONFIG_HEADER(src/config.h)
# -- Variablen --
@ -177,6 +180,13 @@ AC_ARG_ENABLE(sniffer,
# -- Ausgabe --
AC_OUTPUT([Makefile doc/Makefile MacOSX/Makefile src/Makefile src/ngircd/Makefile])
AC_OUTPUT([ \
Makefile \
doc/Makefile \
MacOSX/Makefile \
MacOSX/ngircd.pbproj/Makefile \
src/Makefile \
src/ngircd/Makefile \
])
# -eof-