Changeset 8d3e6ab for app/src


Ignore:
Timestamp:
03/13/08 12:45:16 (16 years ago)
Author:
pawelk <pawelk@…>
Branches:
master, help
Children:
246900a
Parents:
e1b08a2
git-author:
pawelk <pawelk@…> (03/13/08 12:45:16)
git-committer:
pawelk <pawelk@…> (03/13/08 12:45:16)
Message:

Poprawilem wiekszosc makow pod katem poprawego kompilowania.
Wystepuje blad kompilacji dla gue.

git-svn-id: svn://atos.wmid.amu.edu.pl/utt@9 e293616e-ec6a-49c2-aa92-f4a8b91c5d16

Location:
app/src
Files:
18 edited

Legend:

Unmodified
Added
Removed
  • app/src/compiledic/Makefile

    r25ae32e r8d3e6ab  
     1CFLAG1 = -m32 -Wno-deprecated -O3 -fpermissive 
     2CFLAG_ST = -Wno-deprecated -O3 -fpermissive -static 
     3 
    14all: compiledic aut2fsa 
    25 
     
    47 
    58aut2fsa: aut2fsa.cc 
    6         g++ -Wno-deprecated -O3 -fpermissive -static -o aut2fsa aut2fsa.cc 
     9        #g++ -m32 -Wno-deprecated -O3 -fpermissive -static -o aut2fsa aut2fsa.cc 
     10        g++ $(CFLAG1) -o aut2fsa aut2fsa.cc 
    711 
    812 
     
    1115        cp compiledic fsm2aut aut2fsa ${UTT_BIN_DIR} 
    1216endif 
     17 
     18clean: 
     19        rm aut2fsa 
     20 
  • app/src/cor/Makefile

    r25ae32e r8d3e6ab  
    2626        gengetopt -i cmdline.ggo --conf-parser 
    2727 
    28 cmdline.ggo: cmdline_cor.ggo ../common/cmdline_common.ggo 
    29         cat cmdline_cor.ggo ../common/cmdline_common.ggo > cmdline.ggo 
     28cmdline.ggo: cmdline_cor.ggo $(COMMON_PATH)/cmdline_common.ggo 
     29        cat cmdline_cor.ggo $(COMMON_PATH)/cmdline_common.ggo > cmdline.ggo 
    3030 
    3131copy: 
  • app/src/fla/Makefile

    r25ae32e r8d3e6ab  
     1PAR = -m32 
     2# -static 
    13 
    24fla: fla.c 
    3         gcc -static -o fla fla.c 
     5        gcc $(PAR) -o fla fla.c 
    46 
    57copy: 
     
    1012clean: 
    1113        rm fla 
    12  
    13 uninstall: 
  • app/src/gph/Makefile

    r25ae32e r8d3e6ab  
    66        cp gph ${UTT_BIN_DIR} 
    77endif 
     8 
     9clean: 
  • app/src/grp/Makefile

    r25ae32e r8d3e6ab  
    55        cp grp ${UTT_BIN_DIR} 
    66endif 
     7 
     8clean: 
  • app/src/gue/Makefile

    r25ae32e r8d3e6ab  
    1 PAR=-Wno-deprecated -O3 -fpermissive -static 
    2 PAR2=-c -Wno-deprecated -O3 -fpermissive 
     1PAR=-Wno-deprecated -O3 -fpermissive -m32 
     2#-static 
     3PAR2=-c -Wno-deprecated -O3 -fpermissive -m32 
    34LIB_PATH=../lib 
    45COMMON_PATH=../common 
     
    2526        gengetopt -i cmdline.ggo --conf-parser 
    2627 
    27 cmdline.ggo: cmdline_guess.ggo ../common/cmdline_common.ggo 
    28         cat cmdline_guess.ggo ../common/cmdline_common.ggo > cmdline.ggo 
     28cmdline.ggo: cmdline_guess.ggo $(COMMON_PATH)/cmdline_common.ggo 
     29        cat cmdline_guess.ggo $(COMMON_PATH)/cmdline_common.ggo > cmdline.ggo 
    2930 
    3031 
  • app/src/gue/cmdline_guess.ggo

    r25ae32e r8d3e6ab  
    55option "delta"                  -       "Stop displaying answers after fall of weight" float default="0.2" no 
    66option "cut-off"                -       "Do not display answers with less weight than cut-off" int default="200" no 
    7 option "dictionary-home"        -       "dh" hidden 
    8 option "dictionary"             d       "File with dictionary information" string typestr="filename" default="~/.utt/lang/pl_PL.ISO-8859-2/gue.bin" no 
     7option "dictionary-home"        -       "dh" string typestr="FILENAME" no hidden 
     8option "dictionary"             d       "File with dictionary information" string typestr="filename" default="gue.bin" no 
    99option "per-info"               v       "Display performance information" flag off 
    1010option "weights"                w       "Print weights" flag off hidden 
  • app/src/kon/Makefile

    r52bccea r8d3e6ab  
    11 
    2 con: 
     2kon: 
    33 
    44copy: 
     
    66            cp kon ${UTT_BIN_DIR} 
    77endif 
     8 
     9clean: 
  • app/src/kot/Makefile

    r25ae32e r8d3e6ab  
    66        cp kot ${UTT_BIN_DIR} 
    77endif 
     8 
     9clean: 
  • app/src/lib/Makefile

    r25ae32e r8d3e6ab  
    11PAR=-Wno-deprecated -m32 -O3 
    2 PAR2=-c -Wno-deprecated -m32 -O3 -static -fpermissive 
     2PAR2=-c -Wno-deprecated -m32 -O3 -fpermissive 
     3# -static 
    34LIB_PATH=../lib 
    45COMMON_PATH=../common 
     
    1617 
    1718copy: 
    18 ifdef UTT_LIB_DIR 
    19         cp -r perl $(UTT_LIB_DIR)/ 
    20 endif 
     19#ifdef UTT_LIB_DIR 
     20#       cp -r perl $(UTT_LIB_DIR)/ 
     21#endif 
  • app/src/mar/Makefile

    r25ae32e r8d3e6ab  
    55        cp mar ${UTT_BIN_DIR} 
    66endif 
     7 
     8clean: 
  • app/src/rm12/Makefile

    r25ae32e r8d3e6ab  
    55        cp rm12 ${UTT_BIN_DIR} 
    66endif 
     7 
     8clean: 
  • app/src/rs12/Makefile

    r25ae32e r8d3e6ab  
     1PAR = -m32 
     2# -static 
     3 
    14main: rs12 
    25 
    36rs12: rs12.c 
    4         gcc -static -o rs12 rs12.c 
     7        gcc $(PAR) -o rs12 rs12.c 
    58 
    69clean: 
  • app/src/sen-l/Makefile

    r25ae32e r8d3e6ab  
    1  
    21 
    32sen: sen.l 
     
    1211clean: 
    1312        rm sen.c sen 
    14  
    15 uninstall: 
  • app/src/ser/Makefile

    r25ae32e r8d3e6ab  
    88 
    99clean: 
    10  
    11 uninstall: 
  • app/src/tags/Makefile

    r25ae32e r8d3e6ab  
    22 
    33copy: 
    4 ifdef UTT_TAGS_DIR 
    5         cp *.tag2re ${UTT_TAGS_DIR} 
     4ifdef UTT_BIN_DIR 
     5        cp *.tag2re ${UTT_BIN_DIR} 
    66endif 
    77 
  • app/src/tok.l/Makefile

    r25ae32e r8d3e6ab  
    1 PAR=-O3 -static 
     1PAR=-O3 -m32 
     2#-static 
    23 
    34tok: tok.c cmdline.c 
  • app/src/unfla/Makefile

    r25ae32e r8d3e6ab  
    55        cp unfla ${UTT_BIN_DIR} 
    66endif 
     7 
     8clean: 
Note: See TracChangeset for help on using the changeset viewer.