-
Notifications
You must be signed in to change notification settings - Fork 380
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test(make): add test cases for GitHub #544
- Loading branch information
1 parent
a392580
commit b352d4c
Showing
2 changed files
with
60 additions
and
0 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
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