-
Notifications
You must be signed in to change notification settings - Fork 386
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #546 from akinomyoga/fix-make-for-show-all-if-ambi…
…guous fix(make): fix stripped directory names with `bind 'set show-all-if-ambiguous on'`
- Loading branch information
Showing
3 changed files
with
127 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# makefile | ||
|
||
all: abc/xyz | ||
.PHONY: abc/xyz | ||
abc/xyz 123/xaa 123/xbb: | ||
mkdir -p $(@:/%=) | ||
date > $@ | ||
|
||
sub1test/bar/alpha sub1test/bar/beta: | ||
mkdir -p $(@:/%=) | ||
date > $@ | ||
|
||
sub2test/bar/alpha: | ||
mkdir -p $(@:/%=) | ||
date > $@ | ||
|
||
sub3test/bar/alpha sub3test/foo/alpha: | ||
mkdir -p $(@:/%=) | ||
date > $@ | ||
|
||
sub4test/bar/alpha sub4test/bar/beta sub4test2/foo/gamma: | ||
mkdir -p $(@:/%=) | ||
date > $@ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters