Negative glob in Makefile recipe syntax error
If I run the following command directly in /bin/bash it executes perfectly:
cp test_!(*.o) ./tmp/
(I just want to copy all files but objects)
Anyway if I put this command inside a Makefile recipe it gives
bin/bash: -c: line 0: syntax error near unexpected token `('
Example of Makefile
all:
cp test_!(*.o) ./tmp/
What's wrong with that?
makefile syntax-error gnu-make glob
add a comment |
If I run the following command directly in /bin/bash it executes perfectly:
cp test_!(*.o) ./tmp/
(I just want to copy all files but objects)
Anyway if I put this command inside a Makefile recipe it gives
bin/bash: -c: line 0: syntax error near unexpected token `('
Example of Makefile
all:
cp test_!(*.o) ./tmp/
What's wrong with that?
makefile syntax-error gnu-make glob
!(*.o)
is an extended pattern matching feature, turned on withshopt -s extglob
. It may not be available in the subshells spawned by the Makefile, though there's likely a way to turn it on. Sorry, I don't use Makefile much these days, and never needed this, so can't tell you how.
– Paul Hodges
Nov 21 '18 at 14:46
add a comment |
If I run the following command directly in /bin/bash it executes perfectly:
cp test_!(*.o) ./tmp/
(I just want to copy all files but objects)
Anyway if I put this command inside a Makefile recipe it gives
bin/bash: -c: line 0: syntax error near unexpected token `('
Example of Makefile
all:
cp test_!(*.o) ./tmp/
What's wrong with that?
makefile syntax-error gnu-make glob
If I run the following command directly in /bin/bash it executes perfectly:
cp test_!(*.o) ./tmp/
(I just want to copy all files but objects)
Anyway if I put this command inside a Makefile recipe it gives
bin/bash: -c: line 0: syntax error near unexpected token `('
Example of Makefile
all:
cp test_!(*.o) ./tmp/
What's wrong with that?
makefile syntax-error gnu-make glob
makefile syntax-error gnu-make glob
asked Nov 21 '18 at 13:42
alain
476
476
!(*.o)
is an extended pattern matching feature, turned on withshopt -s extglob
. It may not be available in the subshells spawned by the Makefile, though there's likely a way to turn it on. Sorry, I don't use Makefile much these days, and never needed this, so can't tell you how.
– Paul Hodges
Nov 21 '18 at 14:46
add a comment |
!(*.o)
is an extended pattern matching feature, turned on withshopt -s extglob
. It may not be available in the subshells spawned by the Makefile, though there's likely a way to turn it on. Sorry, I don't use Makefile much these days, and never needed this, so can't tell you how.
– Paul Hodges
Nov 21 '18 at 14:46
!(*.o)
is an extended pattern matching feature, turned on with shopt -s extglob
. It may not be available in the subshells spawned by the Makefile, though there's likely a way to turn it on. Sorry, I don't use Makefile much these days, and never needed this, so can't tell you how.– Paul Hodges
Nov 21 '18 at 14:46
!(*.o)
is an extended pattern matching feature, turned on with shopt -s extglob
. It may not be available in the subshells spawned by the Makefile, though there's likely a way to turn it on. Sorry, I don't use Makefile much these days, and never needed this, so can't tell you how.– Paul Hodges
Nov 21 '18 at 14:46
add a comment |
1 Answer
1
active
oldest
votes
Your glob:
test_!(*.o)
employs extended globbing syntax.
Look at this:
$ shopt | grep extglob
extglob on
And then at:
$ cat Makefile
SHELL := /bin/bash
all:
shopt | grep extglob
$ make
shopt | grep extglob
extglob off
Invoked in the terminal, bash
is in interactive mode (as per bash -i
), and
shell opt extglob
is on
.
Invoked by make
, bash
is not in interactive mode (as per bash -c <command>
),
and shell opt extglob
is off
.
You can make your recipe command work by enabling extglob
in the
.SHELLFLAGS
of your makefile, e.g.
$ cat Makefile
SHELL := /bin/bash
.SHELLFLAGS := -O extglob -c
all:
cp test_!(*.o) ./tmp/
$ make
cp test_!(*.o) ./tmp/
cp: cannot stat 'test_!(*.o)': No such file or directory
Makefile:5: recipe for target 'all' failed
make: *** [all] Error 1
As you see, no matches in my working directory, but no syntax error.
Great explanation! It worked like a charm, thanks!
– alain
Nov 21 '18 at 15:36
@alain Your're welcome :)
– Mike Kinghan
Nov 21 '18 at 15:36
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53413411%2fnegative-glob-in-makefile-recipe-syntax-error%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Your glob:
test_!(*.o)
employs extended globbing syntax.
Look at this:
$ shopt | grep extglob
extglob on
And then at:
$ cat Makefile
SHELL := /bin/bash
all:
shopt | grep extglob
$ make
shopt | grep extglob
extglob off
Invoked in the terminal, bash
is in interactive mode (as per bash -i
), and
shell opt extglob
is on
.
Invoked by make
, bash
is not in interactive mode (as per bash -c <command>
),
and shell opt extglob
is off
.
You can make your recipe command work by enabling extglob
in the
.SHELLFLAGS
of your makefile, e.g.
$ cat Makefile
SHELL := /bin/bash
.SHELLFLAGS := -O extglob -c
all:
cp test_!(*.o) ./tmp/
$ make
cp test_!(*.o) ./tmp/
cp: cannot stat 'test_!(*.o)': No such file or directory
Makefile:5: recipe for target 'all' failed
make: *** [all] Error 1
As you see, no matches in my working directory, but no syntax error.
Great explanation! It worked like a charm, thanks!
– alain
Nov 21 '18 at 15:36
@alain Your're welcome :)
– Mike Kinghan
Nov 21 '18 at 15:36
add a comment |
Your glob:
test_!(*.o)
employs extended globbing syntax.
Look at this:
$ shopt | grep extglob
extglob on
And then at:
$ cat Makefile
SHELL := /bin/bash
all:
shopt | grep extglob
$ make
shopt | grep extglob
extglob off
Invoked in the terminal, bash
is in interactive mode (as per bash -i
), and
shell opt extglob
is on
.
Invoked by make
, bash
is not in interactive mode (as per bash -c <command>
),
and shell opt extglob
is off
.
You can make your recipe command work by enabling extglob
in the
.SHELLFLAGS
of your makefile, e.g.
$ cat Makefile
SHELL := /bin/bash
.SHELLFLAGS := -O extglob -c
all:
cp test_!(*.o) ./tmp/
$ make
cp test_!(*.o) ./tmp/
cp: cannot stat 'test_!(*.o)': No such file or directory
Makefile:5: recipe for target 'all' failed
make: *** [all] Error 1
As you see, no matches in my working directory, but no syntax error.
Great explanation! It worked like a charm, thanks!
– alain
Nov 21 '18 at 15:36
@alain Your're welcome :)
– Mike Kinghan
Nov 21 '18 at 15:36
add a comment |
Your glob:
test_!(*.o)
employs extended globbing syntax.
Look at this:
$ shopt | grep extglob
extglob on
And then at:
$ cat Makefile
SHELL := /bin/bash
all:
shopt | grep extglob
$ make
shopt | grep extglob
extglob off
Invoked in the terminal, bash
is in interactive mode (as per bash -i
), and
shell opt extglob
is on
.
Invoked by make
, bash
is not in interactive mode (as per bash -c <command>
),
and shell opt extglob
is off
.
You can make your recipe command work by enabling extglob
in the
.SHELLFLAGS
of your makefile, e.g.
$ cat Makefile
SHELL := /bin/bash
.SHELLFLAGS := -O extglob -c
all:
cp test_!(*.o) ./tmp/
$ make
cp test_!(*.o) ./tmp/
cp: cannot stat 'test_!(*.o)': No such file or directory
Makefile:5: recipe for target 'all' failed
make: *** [all] Error 1
As you see, no matches in my working directory, but no syntax error.
Your glob:
test_!(*.o)
employs extended globbing syntax.
Look at this:
$ shopt | grep extglob
extglob on
And then at:
$ cat Makefile
SHELL := /bin/bash
all:
shopt | grep extglob
$ make
shopt | grep extglob
extglob off
Invoked in the terminal, bash
is in interactive mode (as per bash -i
), and
shell opt extglob
is on
.
Invoked by make
, bash
is not in interactive mode (as per bash -c <command>
),
and shell opt extglob
is off
.
You can make your recipe command work by enabling extglob
in the
.SHELLFLAGS
of your makefile, e.g.
$ cat Makefile
SHELL := /bin/bash
.SHELLFLAGS := -O extglob -c
all:
cp test_!(*.o) ./tmp/
$ make
cp test_!(*.o) ./tmp/
cp: cannot stat 'test_!(*.o)': No such file or directory
Makefile:5: recipe for target 'all' failed
make: *** [all] Error 1
As you see, no matches in my working directory, but no syntax error.
edited Nov 21 '18 at 15:38
answered Nov 21 '18 at 15:33
Mike Kinghan
30.1k763110
30.1k763110
Great explanation! It worked like a charm, thanks!
– alain
Nov 21 '18 at 15:36
@alain Your're welcome :)
– Mike Kinghan
Nov 21 '18 at 15:36
add a comment |
Great explanation! It worked like a charm, thanks!
– alain
Nov 21 '18 at 15:36
@alain Your're welcome :)
– Mike Kinghan
Nov 21 '18 at 15:36
Great explanation! It worked like a charm, thanks!
– alain
Nov 21 '18 at 15:36
Great explanation! It worked like a charm, thanks!
– alain
Nov 21 '18 at 15:36
@alain Your're welcome :)
– Mike Kinghan
Nov 21 '18 at 15:36
@alain Your're welcome :)
– Mike Kinghan
Nov 21 '18 at 15:36
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53413411%2fnegative-glob-in-makefile-recipe-syntax-error%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
!(*.o)
is an extended pattern matching feature, turned on withshopt -s extglob
. It may not be available in the subshells spawned by the Makefile, though there's likely a way to turn it on. Sorry, I don't use Makefile much these days, and never needed this, so can't tell you how.– Paul Hodges
Nov 21 '18 at 14:46