Index: app/src/fla/Makefile
===================================================================
--- app/src/fla/Makefile	(revision 8d3e6ab33b2b6727eb54bb3498a0ba2af9ca9ea1)
+++ 	(revision )
@@ -1,13 +1,0 @@
-PAR = -m32
-# -static
-
-fla: fla.c
-	gcc $(PAR) -o fla fla.c
-
-copy:
-ifdef UTT_BIN_DIR
-	cp fla ${UTT_BIN_DIR}
-endif
-
-clean:
-	rm fla
Index: app/src/fla/fla.c
===================================================================
--- app/src/fla/fla.c	(revision 25ae32e4c2354e0ed6756bbe1de83f39cd814652)
+++ 	(revision )
@@ -1,46 +1,0 @@
-#include <stdio.h>
-#include <string.h>
-#include <regex.h>
-
-char buf[5001];
-
-main(int argc, char **argv)
-{
-
-  char *pattern;
-  char eoln;
-  regex_t re;
-
-  int firstline=1;
-
-  if(argc < 2)
-/*     pattern="[ \t]*([0-9]+[ \t]+){2}EOS([ \t].*)?"; */
-    pattern="[ \t]*BOS([ \t].*)?";
-  else
-    pattern=argv[1];
-
-  if(argc < 3)
-    eoln='\f';
-  else
-    eoln=atoi(argv[2]);
-
-  if(regcomp(&re, pattern, REG_EXTENDED|REG_NOSUB) !=0)
-  {
-    fprintf(stderr,"Invalid pattern.\n");
-    exit(1);
-  }
-
-  while(fgets(buf,5000,stdin))
-  {
-    buf[strlen(buf)-1]='\0';
-    if(firstline)
-      firstline=0;
-    else
-      if(regexec(&re, buf, (size_t)0, NULL, 0) == 0)
-        putchar('\n');
-      else
-        putchar(eoln);
-    fputs(buf,stdout);
-  }
-  putchar('\n');
-}
