From: Geoff O'C. <ge...@st...> - 2001-10-15 22:51:39
|
Greetings, I wrote the following BUILD instructions for rocketworkbench. ie. Briefly what you need to do to build rocketworkbench from the source. I suggest it go into rocketworkbench/BUILD Anyway... here it is for comment. It is missing the download location for GPCP. Cheers Geoff ps.. Here's a patch to adjust the sources/libraries/Makefile to build gpcp when you've downloaded it. diff --exclude=CVS/* -rc --new-file rocketworkbench/rocketworkbench/source/libraries/Makefile rocketworkbench-new/rocketworkbench/source/libraries/Makefile *** rocketworkbench/rocketworkbench/source/libraries/Makefile Fri Jul 20 13:19:00 2001 --- rocketworkbench-new/rocketworkbench/source/libraries/Makefile Tue Oct 16 08:48:39 2001 *************** *** 9,14 **** --- 9,19 ---- all: @echo " --------------------" + @echo " Compiling gpcp ..." + @echo " --------------------" + @$(MAKE) --no-print-directory -C gpcp all + + @echo " --------------------" @echo " Compiling libnum ..." @echo " --------------------" @$(MAKE) --no-print-directory -C libnum all *************** *** 50,55 **** --- 55,62 ---- clean: + @echo " Cleaning gpcp ..." + @$(MAKE) --no-print-directory -C gpcp clean @echo " Cleaning libnum..." @$(MAKE) --no-print-directory -C libnum clean @echo " Cleaning libcpropep..." |