bug-make
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: incompatibility with unix make


From: Paul D. Smith
Subject: Re: incompatibility with unix make
Date: Thu, 19 Jun 2003 11:49:23 -0400

%% "Thomas Abendroth" <address@hidden> 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 <address@hidden>          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




reply via email to

[Prev in Thread] Current Thread [Next in Thread]