"[EMAIL PROTECTED]" <[EMAIL PROTECTED]> writes:

> Is there anyway that "main-o.o: main.cc" can be generated with g++?

Sure:

$ g++ -MM main.cc
main.o: main.cc
$ g++ -MM main.cc -MT main-o.o
main-o.o: main.cc

The above was obtained using g++-3.3.3 ... 
AFAICT, the -MT flag was added in 3.0

Cheers,
-- 
In order to understand recursion you must first understand recursion.
Remove /-nsp/ for email.
_______________________________________________
Help-gplusplus mailing list
Help-gplusplus@gnu.org
http://lists.gnu.org/mailman/listinfo/help-gplusplus

Reply via email to