Hi! In the case you didn't noticed, the v05 branch of wormux now uses autotools to be built, thanks to Isaac Clerencia's contribution.
So now to compile wormux, it's the linux way: ./configure;make su make install to use the debug mode do a ./configure --enable-debug Also when adding new sources files, you need to modify the src/Makefile.am (file parsed by automake) and add the .cpp file to the "wormux_SOURCES" variable. Then you run autogen.sh in wormux folder (it will build the Makefiles.in from Makefile.am) and then you'll need to do a ./configure to get the new file compiled. Another thing when adding new files! Upload to cvs new versions of Makefile.am and Makefile.in after you have run the autogen.sh script. Lodesi