diff options
author | milancurcic <caomaco@gmail.com> | 2020-07-24 12:47:14 -0400 |
---|---|---|
committer | milancurcic <caomaco@gmail.com> | 2020-07-24 12:47:14 -0400 |
commit | 81bd372d35456008ac367c0a9502b9f7e9616bc3 (patch) | |
tree | f281388d0d9c2ae0fe001e045adcaaf1d5ad67d7 | |
parent | 186b0c47300d2e6d4ef39e8c77dca30c71b3ffb1 (diff) | |
download | fpm-81bd372d35456008ac367c0a9502b9f7e9616bc3.tar.gz fpm-81bd372d35456008ac367c0a9502b9f7e9616bc3.zip |
expand the help message with command list and description
-rw-r--r-- | fpm/src/fpm.f90 | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/fpm/src/fpm.f90 b/fpm/src/fpm.f90 index bfb31fc..fe3079b 100644 --- a/fpm/src/fpm.f90 +++ b/fpm/src/fpm.f90 @@ -114,6 +114,16 @@ select case (get_os_type()) case (OS_WINDOWS) print *, "OS Type: Windows" end select +print * +print *, "USAGE:" +print *, " fpm [COMMAND]" +print * +print *, "Valid fpm commands are:" +print *, " build Compile the current package" +print *, " install Install a Fortran binary or library (not implemented)" +print *, " new Create a new Fortran package (not implemented)" +print *, " run Run a binary of the local package (not implemented)" +print *, " test Run the tests (not implemented)" end subroutine subroutine run(cmd) |