9 lines
174 B
Bash
9 lines
174 B
Bash
#!/bin/sh
|
|
|
|
if test "x$1" = "x-f77"; then
|
|
cp @ct_templdir@/f77/*.* .
|
|
elif test "x$1" = "x-f90"; then
|
|
cp @ct_templdir@/f90/*.* .
|
|
else
|
|
cp @ct_templdir@/cxx/*.* .
|
|
fi
|