aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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)