Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove temporary files.
[simgrid.git] / src / smpi / smpiff.in
index e97d6c2..9e78970 100644 (file)
@@ -6,6 +6,8 @@
 # This program is free software; you can redistribute it and/or modify it
 # under the terms of the license (GNU LGPL) which comes with this package.
 
+SIMGRID_VERSION="@SIMGRID_VERSION_STRING@"
+
 F77=@GFORTRAN_EXE@
 
 INCLUDEARGS="@includeflag@"
@@ -20,7 +22,7 @@ main_name=main
 
 cleanup () {
     eval $(list_get TMPFILES)
-   # rm -f "$@"
+    rm -f "$@"
 }
 trap 'cleanup' EXIT
 
@@ -43,6 +45,10 @@ while [ $# -gt 0 ]; do
             SRCFILE="${TMPFILE}"
             list_add CMDLINE "${SRCFILE}"
             ;;
+        '-version' | '--version' | '-v')
+            printf '%b\n' "$SIMGRID_VERSION"
+            exit 0
+            ;;           
         *)
             list_add CMDLINE "${ARG}"
             ;;