www.delorie.com/archives/browse.cgi   search  
Mail Archives: cygwin/1997/04/17/10:39:36

From: john AT rrci DOT com ("John D. Robertson")
Subject: Re: make recursion not exporting
17 Apr 1997 10:39:36 -0700 :
Approved: cygnus DOT gnu-win32 AT cygnus DOT com
Distribution: cygnus
Message-ID: <Pine.LNX.3.91.970417094559.263C-100000.cygnus.gnu-win32@localhost>
Mime-Version: 1.0
X-Sender: john AT localhost
Original-To: Tripp Lilley <tlilley AT perspex DOT com>
Original-Cc: gnu-win32 AT cygnus DOT com
In-Reply-To: <Pine.LNX.3.95.970416105953.25446D-100000@mail.perspex.com>
Original-Sender: owner-gnu-win32 AT cygnus DOT com

I had the exact same problem, and this is how I fixed it...
Change to this:


tester/Makefile:
#export
#THINGIE="test thingie"

all:
#        echo $(THINGIE)
        $(MAKE) THINGIE="test thingie" -C sub


tester/sub/Makefile:
export
all:
        echo $(THINGIE)
        $(MAKE) THINGIE="test thingie" -C sub

tester/sub/sub/Makefile:
export
all:
        echo $(THINGIE)
        $(MAKE) THINGIE="test thingie" -C sub

tester/sub/sub/sub/Makefile:
export
all:
        echo $(THINGIE)


|======================================================|
| John D. Robertson, ADAMS Modeler / Software Engineer |
| Robertson & Robertson Consultants, Inc.              |
| 3637 West Georgia Rd.                                |
| Pelzer, SC  29669                                    |
|                                                      |
| Phone: (864) 243-2436                                |
|   Fax: (864) 243-3023                                |
| Email: john AT rrci DOT com                                 |
|======================================================|


-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request AT cygnus DOT com" with one line of text: "help".

- Raw text -


  webmaster     delorie software   privacy  
  Copyright © 2019   by DJ Delorie     Updated Jul 2019