Index: app/dist/common/utt_make_config.pl
===================================================================
--- app/dist/common/utt_make_config.pl	(revision 19dfa5cb763e0eab77888cefb54245f0e847cb94)
+++ app/dist/common/utt_make_config.pl	(revision 6b3be72395bfc594673b8184d6a7624e3800b47d)
@@ -20,4 +20,5 @@
 conf_gue(catfile($usr_home, 'gue.conf'), $sys_home);
 conf_lem(catfile($usr_home, 'lem.conf'), $sys_home);
+conf_mar(catfile($usr_home, 'mar.conf'), $sys_home);
 conf_ser(catfile($usr_home, 'ser.conf'), $sys_home);
 conf_dgc(catfile($usr_home, 'dgc.conf'), $sys_home);
@@ -86,4 +87,5 @@
   print FILE makeConfigHeader();
   print FILE "macros=", abs_path("$utthome/lib/utt/terms.m4"), "\n";
+  print FILE "tags=uam\n";
 
   close FILE;
@@ -146,4 +148,15 @@
 }
 
+sub conf_mar() {
+	my $mar_file = shift;
+	my $utthome = shift;
+  open(FILE, ">$mar_file");
+
+  print FILE makeConfigHeader();
+  print FILE "tags=uam\n";
+
+  close FILE;
+}
+
 sub conf_ser() {
 	my $ser_file = shift;
@@ -154,4 +167,5 @@
   print FILE "macros=", abs_path("$utthome/lib/utt/terms.m4"), "\n";
   print FILE "flex-template=", abs_path("$utthome/lib/utt/ser.l.template"), "\n";
+  print FILE "tags=uam\n";
 
   close FILE;
