summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xlib/make/new_thorn.pl6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/make/new_thorn.pl b/lib/make/new_thorn.pl
index db2c9ea6..2c024923 100755
--- a/lib/make/new_thorn.pl
+++ b/lib/make/new_thorn.pl
@@ -94,6 +94,12 @@ print OUT "# Schedule definitions for thorn $thorn_name\n";
close OUT;
+open(OUT, ">configuration.ccl") || die "Cannot create configuration.ccl";
+
+print OUT "# Configuration definitions for thorn $thorn_name\n";
+
+close OUT;
+
open(OUT, ">README") || die "Cannot create README";
print OUT "Cactus Code Thorn $thorn_name\n";