Skip to content

Commit 1b372be

Browse files
committed
complete documentation changes for --add
1 parent 8c55133 commit 1b372be

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

fpm/src/fpm_command_line.f90

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -498,14 +498,15 @@ subroutine set_help()
498498
' "fpm --help" or "fpm SUBCOMMAND --help" for detailed descriptions. ', &
499499
' ']
500500
help_list_dash = [character(len=80) :: &
501+
!123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890
501502
' ', &
502503
' build [--compiler COMPILER_NAME] [--release] [--list] ', &
503504
' help [NAME(s)] ', &
504505
' new NAME [[--lib|--src] [--app] [--test] [--example]]| ', &
505506
' [--full|--bare][--backfill] ', &
506507
' update [NAME(s)] [--fetch-only] [--clean] [--verbose] ', &
507508
' list [--list] ', &
508-
' run [[--target] NAME(s)] [--release] [--runner "CMD"] [--list] [--example] ', &
509+
' run [[--target] NAME(s)|--all] [--release] [--runner "CMD"] [--list] [--example]', &
509510
' [--compiler COMPILER_NAME] [-- ARGS] ', &
510511
' test [[--target] NAME(s)] [--release] [--runner "CMD"] [--list] ', &
511512
' [--compiler COMPILER_NAME] [-- ARGS] ', &
@@ -618,7 +619,7 @@ subroutine set_help()
618619
' new NAME [[--lib|--src] [--app] [--test] [--example]]| ', &
619620
' [--full|--bare][--backfill] ', &
620621
' update [NAME(s)] [--fetch-only] [--clean] ', &
621-
' run [[--target] NAME(s)] [--release] [--list] [--example] ', &
622+
' run [[--target] NAME(s)|--all] [--release] [--list] [--example] ', &
622623
' [--runner "CMD"] [--compiler COMPILER_NAME] [-- ARGS] ', &
623624
' test [[--target] NAME(s)] [--release] [--list] ', &
624625
' [--runner "CMD"] [--compiler COMPILER_NAME] [-- ARGS] ', &
@@ -690,7 +691,7 @@ subroutine set_help()
690691
' run(1) - the fpm(1) subcommand to run project applications ', &
691692
' ', &
692693
'SYNOPSIS ', &
693-
' fpm run [[--target] NAME(s)][--release][--compiler COMPILER_NAME] ', &
694+
' fpm run [[--target] NAME(s)|-all][--release][--compiler COMPILER_NAME]', &
694695
' [--runner "CMD"] [--example] [--list][-- ARGS] ', &
695696
' ', &
696697
' fpm run --help|--version ', &
@@ -711,7 +712,7 @@ subroutine set_help()
711712
' Simple "globbing" is supported where "?" represents ', &
712713
' any single character and "*" represents any string. ', &
713714
' Therefore a quoted asterisk ''*'' runs all programs. ', &
714-
' --all An alias for "--target ''*''. All targets are selected. ', &
715+
' --all An alias for "--target ''*''". All targets are selected. ', &
715716
' --example run example programs instead of applications ', &
716717
' --release selects the optimized build instead of the debug build. ', &
717718
' --compiler COMPILER_NAME Specify a compiler name. The default is ', &

0 commit comments

Comments
 (0)