%% "Thomas Abendroth" <[EMAIL PROTECTED]> writes:

  ta> I use GNU-make WIN32 version 3.79.1. for some days and I found
  ta> out, that the makefile code below does not work.  With Borland
  ta> 'make' and Solaris 'make' the same makefile works perfectly.

"Does not work" is not a helpful bug report.

A very brief review of your makefile shows only one obvious problem:

  ta> .SUFFIXES: .$(OBJ).cpp

Suffixes must be space-separated.  The above line should be:

  .SUFFIXES: .$(OBJ) .cpp


If that doesn't help please provide a small makefile which reproduces
the problem, the command you typed, and the exact output you got, as
well as what you expected to get.

-- 
-------------------------------------------------------------------------------
 Paul D. Smith <[EMAIL PROTECTED]>          Find some GNU make tips at:
 http://www.gnu.org                      http://make.paulandlesley.org
 "Please remain calm...I may be mad, but I am a professional." --Mad Scientist


_______________________________________________
Bug-make mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-make

Reply via email to