Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8076915
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T15:21:50+00:00 2026-06-05T15:21:50+00:00

I have a variable in my makefile I would like to either unset or

  • 0

I have a variable in my makefile I would like to either unset or redefine, so that targets a, b and c use the correct value of MY_VARIABLE (or none at all) within their respective makefiles.

If I run make foo with the following:

export MY_VARIABLE := 'false'
foo: prep_foo dist
prep_foo:
    $(shell export MY_VARIABLE='true')
    echo ${MY_VARIABLE}
dist: a b c
a: 
    make -C a/src
b: 
    make -C b/src
c: 
    make -C c/src

I get this output:

export MY_VARIABLE='true'
echo 'false'
false
...

If, instead, I run make foo with the following makefile:

export MY_VARIABLE := 'false'
foo: prep_foo dist
prep_foo:
    $(shell unset MY_VARIABLE)
    echo ${MY_VARIABLE}
dist: a b c
a: 
    make -C a/src
b: 
    make -C b/src
c: 
    make -C c/src

I get the following output:

make: unset: No such file or directory
echo 'false'
false
...

How can I unset or redefine MY_VARIABLE when specifying a target (like foo, in this case)?

EDIT

Here is the situation I would like to avoid:

dist: a b c 
foo: a_foo b_foo c_foo
a:
    make -C a/src
...
a_foo
    make -C a_foo/src

I just want the a target to use a different value for my particular variable, so that compilation is handled differently in that target’s makefile.

Also, it doesn’t look like I can export or unset variables within a target. For example:

dist: a b c 
foo: a_foo b_foo c_foo
a:
    make -C a/src
...
a_foo:
    export MY_VARIABLE='true'; make -C a/src

If I try to do so, I get something similar to the following error on the export MY_VARIABLE='true' line (and similarly if I try to use unset):

Makefile:16: *** unterminated variable reference.  Stop.

Does this help clarify what I’m trying to do?

EDIT 2

I tried a target which touch-es a file and tries to run the child target’s makefile (which checks for the file’s existence):

foo: prep_foo
prep_foo:
    touch a/src/.foo
    make -C a/src

When I try to run this via make foo, I get the following error:

Makefile:14: *** commands commence before first target.  Stop.

If I remove the make statement from prep_foo, then I can touch the file without getting the error message, but I cannot trigger making the a target, so this doesn’t seem to help.

The following yields the same commands commence before first target error message:

foo: prep_foo a
prep_foo:
    touch a/src/.foo

Is there an example of using touch to communicate state to child targets?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-05T15:21:51+00:00Added an answer on June 5, 2026 at 3:21 pm

    The common way to communicate between targets in a Makefile is through files. Just touch a file in one target and check it in the other. Can this help you solve your problem?

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like to use a single Makefile to generate targets in hundreds of
I have a variable that can either contain a list of strings or a
I have a very simple Makefile that isn't doing what I expect it would
Let's say you have a variable in a makefile fragment like the following: MY_LIST=a
I have a GNU Makefile that looks a bit like this: LIST = item1
In a GNU makefile, I would like to set an output variable to one
I have a variable foo that contains a time, lets say 4pm today, but
I have a variable in my xsl that may or may not be declared.
I have a variable that im define with another variable and some text. $title
I would like to create a Makefile which also creates a simple script for

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.