|
From: Joe Z. <jz...@at...> - 2003-04-24 18:36:11
|
The Makefiles are in the man directory in cvs. I just tested downloading
bobs using anonymous cvs into an empty directory and the man Makefiles
came with it and everything compiled and installed.
Heres how the autoconf stuff works. I run this to generate a fresh copy
of the makefiles:
aclocal && autoconf && automake --add-missing && ./configure
aclocal
This generates the file 'aclocal.m4' which contains macros needed by
the other make tools.
autoconf
Creates 'configure' from 'configure.in'
automake --add-missing
Creates 'Makefile.in' from 'Makefile.am'. The add-missing creates
links to some files that 'configure' uses.
configure
Creates Makefile from Makefile.in
I do a 'make distclean' before I check in my changes. This gets rid of
all the files that aren't included in the cvs or in a distribution.
I run 'make maintainer-clean' after I've changed any of the '*.in' or
'*.am' files. This cleans up all the files built by aclocal, autoconf
and automake so I can ensure a fresh build using aclocal, etc...
Joe
Rene Rask wrote:
>Neat stuff.
>
>A few comments:
>
>I have problems with ./configure and make. I need a Makefile.in and
>Makefile.am in the man dir. (I don't even know how to make those. I
>still don't get the whole autoconf, automake and configure situation.)
>
>I plan to make the incremantal/servername and current/servername dirs
>configurable (and proably incoming/server as well). It will make bobs
>much easier to maintain. Just a notice, so you do make something that
>has to be completely redone later.
>
>Do I win a prize when all the fields are green ;)
>
>Cheers
>Rene
>
>
>On Thu, 2003-04-24 at 08:26, Joe Zacky wrote:
>
>
>>If you get the latest cvs and go to
>>http://your.host.name/bobs/systemcheck.php you'll see the system
>>configuration test page I created this weekend. Try 'killall cmdloop'
>>then see what systemcheck.php says.
>>
>>I still need to add the individual server checks. You'll select a server
>>and it will do the system checks then the server checks. I will test
>>things similar to the way servercheck.sh does, using the cmdloop process.
>>
>>This was a fun script to write, and I learned to use rfasttemplate -
>>it's nice.
>>
>>Joe
>>
>>
>>
>>-------------------------------------------------------
>>This sf.net email is sponsored by:ThinkGeek
>>Welcome to geek heaven.
>>http://thinkgeek.com/sf
>>_______________________________________________
>>Bobs-devel mailing list
>>Bob...@li...
>>https://lists.sourceforge.net/lists/listinfo/bobs-devel
>>
>>
1.
|