I'm stumbling through the new build system on linux ... here's what I did after a fresh check-out ...
./autogen.sh ./configure make -f Makefile The first thing that I noticed was that I have to have the environment variables CONFIG and OSTYPE defined, as it appears to be looking for the makefile-linux-debug.cfg file. Is this expected? It seems that that was how the old makefile worked - I didn't expect that to be used by the new setup. If I define CONFIG=debug and OSTYPE=linux, then I get an error saying that no target "all-recursive" has been defined: [EMAIL PROTECTED] activemq-cpp]$ make -f Makefile make all-recursive make[1]: Entering directory `/home/nmittler/activemq-cpp-workspace/activemq-cpp' make[1]: *** No rule to make target `all-recursive'. Stop. make[1]: Leaving directory `/home/nmittler/activemq-cpp-workspace/activemq-cpp' make: *** [all] Error 2 ... does anyone have an idea of what I might be doing wrong? Thanks, Nate
