Changeset f4bf33e for src


Ignore:
Timestamp:
03/13/12 17:18:41 (12 years ago)
Author:
Tomasz Obrebski <to@…>
Branches:
master
Children:
555c7f8
Parents:
a15e59b
git-author:
Tomasz Obrebski <to@…> (03/13/12 17:18:41)
git-committer:
Tomasz Obrebski <to@…> (03/13/12 17:18:41)
Message:

dodane programy do uaktualniania slownika form (compdic-*)

Location:
src
Files:
5 added
2 edited

Legend:

Unmodified
Added
Removed
  • src/common/common.cc

    rcfdf333 rf4bf33e  
    168168    if(!(outputf=fopen(args->output_arg,"w"))) 
    169169    { 
    170       fprintf(stderr,"Cannot open output file: %s.\n", args->output_arg); 
     170      fprintf(stderr,"Cannot open the output file: %s.\n", args->output_arg); 
    171171      exit(1); 
    172172    } 
     
    175175      if(!(failedf=fopen(args->fail_arg,"w"))) 
    176176      { 
    177         fprintf(stderr,"Cannot open output file: %s.\n", args->fail_arg); 
     177        fprintf(stderr,"Cannot open the output file: %s.\n", args->fail_arg); 
    178178        exit(1); 
    179179      } 
  • src/compdic/Makefile

    re7de6cc rf4bf33e  
    1616ifdef BIN_DIR 
    1717        install -m 0755 compdic $(BIN_DIR) 
     18        install -m 0755 compdic-create-fst $(BIN_DIR) 
     19        install -m 0755 compdic-fst-add $(BIN_DIR) 
     20        install -m 0755 compdic-fst-minus $(BIN_DIR) 
     21        install -m 0755 compdic-fst-to-bin $(BIN_DIR) 
     22        install -m 0755 compdic-fst-update $(BIN_DIR) 
     23 
    1824        install -m 0755 fsm2aut $(BIN_DIR) 
    1925        install -m 0755 aut2fsa $(BIN_DIR) 
     
    2531ifdef BIN_DIR 
    2632        rm $(BIN_DIR)/compdic 
     33        rm $(BIN_DIR)/compdic-create-fst 
     34        rm $(BIN_DIR)/compdic-fst-add 
     35        rm $(BIN_DIR)/compdic-fst-minus 
     36        rm $(BIN_DIR)/compdic-fst-to-bin 
     37        rm $(BIN_DIR)/compdic-fst-update 
    2738        rm $(BIN_DIR)/fsm2aut 
    2839        rm $(BIN_DIR)/aut2fsa 
Note: See TracChangeset for help on using the changeset viewer.