From: <br...@us...> - 2007-07-31 09:07:23
|
Revision: 234 http://libirc.svn.sourceforge.net/libirc/?rev=234&view=rev Author: brlcad Date: 2007-07-31 02:07:21 -0700 (Tue, 31 Jul 2007) Log Message: ----------- ... and now libIRC even successfully passes a make distcheck again ... ship it! Modified Paths: -------------- trunk/libirc/Makefile.am trunk/libirc/examples/simpleIRCConnect/Makefile.am trunk/libirc/examples/simpleTCPConnect/Makefile.am trunk/libirc/examples/spamBot/Makefile.am trunk/libirc/examples/stupidBot/Makefile.am trunk/libirc/examples/stupidServer/Makefile.am trunk/libirc/include/Makefile.am trunk/libirc/m4/Makefile.am Modified: trunk/libirc/Makefile.am =================================================================== --- trunk/libirc/Makefile.am 2007-07-31 08:42:03 UTC (rev 233) +++ trunk/libirc/Makefile.am 2007-07-31 09:07:21 UTC (rev 234) @@ -21,9 +21,7 @@ include \ m4 \ misc \ - src \ - vc7.1 \ - vc8 + src EXTRA_DIST = \ AUTHORS \ @@ -33,11 +31,13 @@ HACKING \ INSTALL \ NEWS \ - ReadMe.txt \ + README \ TODO \ autogen.sh \ configure.ac \ - libtool + libtool \ + vc7.1 \ + vc8 examples: all-am cd examples && $(MAKE) $(AM_MAKEFLAGS) @@ -56,7 +56,6 @@ @@ECHO@ @@ECHO@ "libIRC @LIBIRC_VERSION@, Build @CONFIG_DATE@" @@ECHO@ - @@ECHO@ "$(MAKECMDGOALS) is goals" @if test "x$(MAKECMDGOALS)" = "xall-am" ; then \ @ECHO@ @ECHO_N@ "Elapsed compilation time: " ;\ sh $(top_srcdir)/misc/elapsed.sh `cat $(top_builddir)/include/libirc_version.h | grep Compilation` ;\ @@ -100,14 +99,16 @@ fi @@ECHO@ -MAINTAINERCLEANFILES = \ - @CONFIG_CACHE@ \ - Makefile.in \ +DISTCLEANFILES = \ + $(CONFIG_CACHE) \ aclocal.m4 \ - autom4te.cache \ config.log \ config.status \ configure \ - libtool + install.$(host_triplet).log \ + libtool \ + so_locations +MAINTAINERCLEANFILES = Makefile.in + include $(top_srcdir)/misc/Makefile.defs Modified: trunk/libirc/examples/simpleIRCConnect/Makefile.am =================================================================== --- trunk/libirc/examples/simpleIRCConnect/Makefile.am 2007-07-31 08:42:03 UTC (rev 233) +++ trunk/libirc/examples/simpleIRCConnect/Makefile.am 2007-07-31 09:07:21 UTC (rev 234) @@ -1,15 +1,12 @@ # $Id$ -SUBDIRS = \ - src +SUBDIRS = src -DIST_SUBDIRS = \ - src \ +EXTRA_DIST = \ + readme.txt \ vc7.1 \ vc8 -EXTRA_DIST = readme.txt - MAINTAINERCLEANFILES = Makefile.in include $(top_srcdir)/misc/Makefile.defs Modified: trunk/libirc/examples/simpleTCPConnect/Makefile.am =================================================================== --- trunk/libirc/examples/simpleTCPConnect/Makefile.am 2007-07-31 08:42:03 UTC (rev 233) +++ trunk/libirc/examples/simpleTCPConnect/Makefile.am 2007-07-31 09:07:21 UTC (rev 234) @@ -1,15 +1,12 @@ # $Id$ -SUBDIRS = \ - src +SUBDIRS = src -DIST_SUBDIRS = \ - src \ +EXTRA_DIST = \ + readme.txt \ vc7.1 \ vc8 -EXTRA_DIST = readme.txt - MAINTAINERCLEANFILES = Makefile.in include $(top_srcdir)/misc/Makefile.defs Modified: trunk/libirc/examples/spamBot/Makefile.am =================================================================== --- trunk/libirc/examples/spamBot/Makefile.am 2007-07-31 08:42:03 UTC (rev 233) +++ trunk/libirc/examples/spamBot/Makefile.am 2007-07-31 09:07:21 UTC (rev 234) @@ -1,17 +1,13 @@ # $Id$ -SUBDIRS = \ - src +SUBDIRS = src -DIST_SUBDIRS = \ - src \ +EXTRA_DIST = \ + readme.txt \ + sample.cfg \ vc7.1 \ vc8 -EXTRA_DIST = \ - readme.txt \ - sample.cfg - MAINTAINERCLEANFILES = Makefile.in include $(top_srcdir)/misc/Makefile.defs Modified: trunk/libirc/examples/stupidBot/Makefile.am =================================================================== --- trunk/libirc/examples/stupidBot/Makefile.am 2007-07-31 08:42:03 UTC (rev 233) +++ trunk/libirc/examples/stupidBot/Makefile.am 2007-07-31 09:07:21 UTC (rev 234) @@ -1,17 +1,13 @@ # $Id$ -SUBDIRS = \ - src +SUBDIRS = src -DIST_SUBDIRS = \ - src \ +EXTRA_DIST = \ + readme.txt \ + sample.cfg \ vc7.1 \ vc8 -EXTRA_DIST = \ - readme.txt \ - sample.cfg - MAINTAINERCLEANFILES = Makefile.in include $(top_srcdir)/misc/Makefile.defs Modified: trunk/libirc/examples/stupidServer/Makefile.am =================================================================== --- trunk/libirc/examples/stupidServer/Makefile.am 2007-07-31 08:42:03 UTC (rev 233) +++ trunk/libirc/examples/stupidServer/Makefile.am 2007-07-31 09:07:21 UTC (rev 234) @@ -1,17 +1,13 @@ # $Id$ -SUBDIRS = \ - src +SUBDIRS = src -DIST_SUBDIRS = \ - src \ +EXTRA_DIST = \ + readme.txt \ + sample.cfg \ vc7.1 \ vc8 -EXTRA_DIST = \ - readme.txt \ - sample.cfg - MAINTAINERCLEANFILES = Makefile.in include $(top_srcdir)/misc/Makefile.defs Modified: trunk/libirc/include/Makefile.am =================================================================== --- trunk/libirc/include/Makefile.am 2007-07-31 08:42:03 UTC (rev 233) +++ trunk/libirc/include/Makefile.am 2007-07-31 09:07:21 UTC (rev 234) @@ -1,21 +1,33 @@ # $Id$ include_HEADERS = \ - TCPConnection.h \ + IRCClient.h \ + IRCEvents.h \ + IRCNumerics.h \ + IRCServer.h \ IRCTextUtils.h \ + IRCUserManager.h \ Singleton.h \ - IRCNumerics.h \ - IRCEvents.h \ + TCPConnection.h \ ircCommands.h \ - libIRC.h + libIRC.h \ + net.h noinst_HEADERS = \ + config.h \ libirc_version.h EXTRA_DIST = \ config.h.in \ version +BUILT_SOURCES = \ + libirc_version.h \ + version + +DISTCLEANFILES = \ + $(BUILT_SOURCES) + MAINTAINERCLEANFILES = Makefile.in libirc_version.h: Modified: trunk/libirc/m4/Makefile.am =================================================================== --- trunk/libirc/m4/Makefile.am 2007-07-31 08:42:03 UTC (rev 233) +++ trunk/libirc/m4/Makefile.am 2007-07-31 09:07:21 UTC (rev 234) @@ -10,9 +10,7 @@ EXTRA_DIST = \ $(brlcad_m4) \ - mkdirp.m4 \ - python.m4 \ - sdl.m4 + mkdirp.m4 MAINTAINERCLEANFILES = Makefile.in This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |