-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
74 additions
and
3 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 |
---|---|---|
|
@@ -3,4 +3,4 @@ | |
*.iml | ||
|
||
soft/ | ||
|
||
tmp/ |
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
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 @@ | ||
|
||
|
||
@goal aaa | ||
@doc some description | ||
|
||
@goal other_goal | ||
@doc do something important | ||
|
||
@goal other_goal_no_doc | ||
|
||
@goal yet_another_goal | ||
@doc do something even more important | ||
|
||
@goal yet_another_goal_priv @private | ||
@doc do something even more important private | ||
|
||
@goal yet_another_goal_looooooooooooooooooong | ||
@doc do something even more important | ||
|
||
@goal yet_another_goal_loooooooooooooong_private @private | ||
@doc do something even more important | ||
|
||
@goal hello |
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,20 @@ | ||
|
||
$ cd "$MYDIR"; ./$MAKESURE -f tests/21_list_goals.sh -l | ||
| Available goals: | ||
| aaa : some description | ||
| other_goal : do something important | ||
| other_goal_no_doc | ||
| yet_another_goal : do something even more important | ||
| yet_another_goal_looooooooooooooooooong : do something even more important | ||
| hello | ||
|
||
$ cd "$MYDIR"; ./$MAKESURE -f tests/21_list_goals.sh -la | ||
| Available goals: | ||
| aaa : some description | ||
| other_goal : do something important | ||
| other_goal_no_doc | ||
| yet_another_goal : do something even more important | ||
| yet_another_goal_priv : do something even more important private | ||
| yet_another_goal_looooooooooooooooooong : do something even more important | ||
| yet_another_goal_loooooooooooooong_private : do something even more important | ||
| hello |