aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormilancurcic <caomaco@gmail.com>2020-07-24 12:47:14 -0400
committermilancurcic <caomaco@gmail.com>2020-07-24 12:47:14 -0400
commit81bd372d35456008ac367c0a9502b9f7e9616bc3 (patch)
treef281388d0d9c2ae0fe001e045adcaaf1d5ad67d7
parent186b0c47300d2e6d4ef39e8c77dca30c71b3ffb1 (diff)
downloadfpm-81bd372d35456008ac367c0a9502b9f7e9616bc3.tar.gz
fpm-81bd372d35456008ac367c0a9502b9f7e9616bc3.zip
expand the help message with command list and description
-rw-r--r--fpm/src/fpm.f9010
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)