I do not use make but to compile with g++ I do the following:
To compile my own library routines
g++ -c -Wall file.C
ar cr file.a file.o
To compile the final program
g++ -o TaxMenu_ TaxMenu.C Tax.a Gentry.a Gout.a file.a date.a lock.a
I hope this helps
Linda
On Sun, 12 May 2002, Blake Thornt
On Sun, May 12, 2002 at 08:16:50PM -0600, Blake Thornton wrote:
> I'm stuggling learning C++ and was hoping someone could point me to a
> source for help. The language is not the problem (I think I can figure
> out the language issues) but I'm having trouble compiling and linking from
> multiple
I'm stuggling learning C++ and was hoping someone could point me to a
source for help. The language is not the problem (I think I can figure
out the language issues) but I'm having trouble compiling and linking from
multiple source files (using make or not using make).
Can anyone point me to