@@ -58,8 +58,8 @@ module fpm_command_line
58
58
& help_text(:), help_install(:), help_help(:), &
59
59
& help_list(:), help_list_dash(:), help_list_nodash(:)
60
60
character (len= 20 ),parameter :: manual(* )= [ character (len= 20 ) :: &
61
- & ' fpm' ,' new' ,' build' ,' run' ,' test ' , &
62
- & ' runner' ,' list' ,' help' ,' version' ]
61
+ & ' ' , ' fpm' , ' new' , ' build' , ' run' , &
62
+ & ' test ' , ' runner' , ' list' , ' help' , ' version' ]
63
63
64
64
character (len= :), allocatable :: charbug
65
65
contains
@@ -432,7 +432,10 @@ subroutine set_help()
432
432
' fpm run myprogram --release -- -x 10 -y 20 --title "my title" ' , &
433
433
' ' , &
434
434
' SEE ALSO ' , &
435
- ' The fpm(1) home page at https://github.com/fortran-lang/fpm ' , &
435
+ ' + The fpm(1) home page is at https://github.com/fortran-lang/fpm ' , &
436
+ ' + Registered fpm(1) packages are at https://fortran-lang.org/packages ' , &
437
+ ' + The fpm(1) TOML file format is described at ' , &
438
+ ' https://github.com/fortran-lang/fpm/blob/master/manifest-reference.md ' , &
436
439
' ' ]
437
440
help_list= [character (len= 80 ) :: &
438
441
' NAME ' , &
@@ -455,9 +458,6 @@ subroutine set_help()
455
458
' ' , &
456
459
' fpm list ' , &
457
460
' fpm --list ' , &
458
- ' ' , &
459
- ' SEE ALSO ' , &
460
- ' The fpm(1) home page at https://github.com/fortran-lang/fpm ' , &
461
461
' ' ]
462
462
help_run= [character (len= 80 ) :: &
463
463
' NAME ' , &
@@ -498,9 +498,6 @@ subroutine set_help()
498
498
' ' , &
499
499
' # install executables in directory (assuming install(1) exists) ' , &
500
500
' fpm run --runner '' install -b -m 0711 -p -t /usr/local/bin'' ' , &
501
- ' ' , &
502
- ' SEE ALSO ' , &
503
- ' The fpm(1) home page at https://github.com/fortran-lang/fpm ' , &
504
501
' ' ]
505
502
help_build= [character (len= 80 ) :: &
506
503
' NAME ' , &
@@ -539,9 +536,6 @@ subroutine set_help()
539
536
' ' , &
540
537
' fpm build # build with debug options ' , &
541
538
' fpm build --release # build with high optimization ' , &
542
- ' ' , &
543
- ' SEE ALSO ' , &
544
- ' The fpm(1) home page at https://github.com/fortran-lang/fpm ' , &
545
539
' ' ]
546
540
547
541
help_help= [character (len= 80 ) :: &
@@ -574,8 +568,6 @@ subroutine set_help()
574
568
' fpm help new # display help for "new" subcommand ' , &
575
569
' fpm help manual # All fpm(1) built-in documentation ' , &
576
570
' ' , &
577
- ' SEE ALSO ' , &
578
- ' The fpm(1) home page at https://github.com/fortran-lang/fpm ' , &
579
571
' ' ]
580
572
help_new= [character (len= 80 ) :: &
581
573
' NAME ' , &
@@ -650,11 +642,6 @@ subroutine set_help()
650
642
' fpm build ' , &
651
643
' fpm run # run example application program ' , &
652
644
' fpm test # run example test program ' , &
653
- ' ' , &
654
- ' SEE ALSO ' , &
655
- ' The fpm(1) home page at https://github.com/fortran-lang/fpm ' , &
656
- ' ' , &
657
- ' Registered packages are at https://fortran-lang.org/packages ' , &
658
645
' ' ]
659
646
help_test= [character (len= 80 ) :: &
660
647
' NAME ' , &
@@ -691,9 +678,6 @@ subroutine set_help()
691
678
' fpm test mytest -- -x 10 -y 20 --title "my title line" ' , &
692
679
' ' , &
693
680
' fpm test tst1 tst2 --release # production version of two tests ' , &
694
- ' ' , &
695
- ' SEE ALSO ' , &
696
- ' The fpm(1) home page at https://github.com/fortran-lang/fpm ' , &
697
681
' ' ]
698
682
help_install= [character (len= 80 ) :: &
699
683
' fpm(1) subcommand "install" ' , &
0 commit comments