- Timestamp:
- 03/13/08 12:45:16 (17 years ago)
- 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)
- Location:
- app/src
- Files:
-
- 18 edited
Legend:
- Unmodified
- Added
- Removed
-
app/src/compiledic/Makefile
r25ae32e r8d3e6ab 1 CFLAG1 = -m32 -Wno-deprecated -O3 -fpermissive 2 CFLAG_ST = -Wno-deprecated -O3 -fpermissive -static 3 1 4 all: compiledic aut2fsa 2 5 … … 4 7 5 8 aut2fsa: 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 7 11 8 12 … … 11 15 cp compiledic fsm2aut aut2fsa ${UTT_BIN_DIR} 12 16 endif 17 18 clean: 19 rm aut2fsa 20 -
app/src/cor/Makefile
r25ae32e r8d3e6ab 26 26 gengetopt -i cmdline.ggo --conf-parser 27 27 28 cmdline.ggo: cmdline_cor.ggo ../common/cmdline_common.ggo29 cat cmdline_cor.ggo ../common/cmdline_common.ggo > cmdline.ggo28 cmdline.ggo: cmdline_cor.ggo $(COMMON_PATH)/cmdline_common.ggo 29 cat cmdline_cor.ggo $(COMMON_PATH)/cmdline_common.ggo > cmdline.ggo 30 30 31 31 copy: -
app/src/fla/Makefile
r25ae32e r8d3e6ab 1 PAR = -m32 2 # -static 1 3 2 4 fla: fla.c 3 gcc -static-o fla fla.c5 gcc $(PAR) -o fla fla.c 4 6 5 7 copy: … … 10 12 clean: 11 13 rm fla 12 13 uninstall: -
app/src/gph/Makefile
r25ae32e r8d3e6ab 6 6 cp gph ${UTT_BIN_DIR} 7 7 endif 8 9 clean: -
app/src/grp/Makefile
r25ae32e r8d3e6ab 5 5 cp grp ${UTT_BIN_DIR} 6 6 endif 7 8 clean: -
app/src/gue/Makefile
r25ae32e r8d3e6ab 1 PAR=-Wno-deprecated -O3 -fpermissive -static 2 PAR2=-c -Wno-deprecated -O3 -fpermissive 1 PAR=-Wno-deprecated -O3 -fpermissive -m32 2 #-static 3 PAR2=-c -Wno-deprecated -O3 -fpermissive -m32 3 4 LIB_PATH=../lib 4 5 COMMON_PATH=../common … … 25 26 gengetopt -i cmdline.ggo --conf-parser 26 27 27 cmdline.ggo: cmdline_guess.ggo ../common/cmdline_common.ggo28 cat cmdline_guess.ggo ../common/cmdline_common.ggo > cmdline.ggo28 cmdline.ggo: cmdline_guess.ggo $(COMMON_PATH)/cmdline_common.ggo 29 cat cmdline_guess.ggo $(COMMON_PATH)/cmdline_common.ggo > cmdline.ggo 29 30 30 31 -
app/src/gue/cmdline_guess.ggo
r25ae32e r8d3e6ab 5 5 option "delta" - "Stop displaying answers after fall of weight" float default="0.2" no 6 6 option "cut-off" - "Do not display answers with less weight than cut-off" int default="200" no 7 option "dictionary-home" - "dh" hidden8 option "dictionary" d "File with dictionary information" string typestr="filename" default=" ~/.utt/lang/pl_PL.ISO-8859-2/gue.bin" no7 option "dictionary-home" - "dh" string typestr="FILENAME" no hidden 8 option "dictionary" d "File with dictionary information" string typestr="filename" default="gue.bin" no 9 9 option "per-info" v "Display performance information" flag off 10 10 option "weights" w "Print weights" flag off hidden -
app/src/kon/Makefile
r52bccea r8d3e6ab 1 1 2 con:2 kon: 3 3 4 4 copy: … … 6 6 cp kon ${UTT_BIN_DIR} 7 7 endif 8 9 clean: -
app/src/kot/Makefile
r25ae32e r8d3e6ab 6 6 cp kot ${UTT_BIN_DIR} 7 7 endif 8 9 clean: -
app/src/lib/Makefile
r25ae32e r8d3e6ab 1 1 PAR=-Wno-deprecated -m32 -O3 2 PAR2=-c -Wno-deprecated -m32 -O3 -static -fpermissive 2 PAR2=-c -Wno-deprecated -m32 -O3 -fpermissive 3 # -static 3 4 LIB_PATH=../lib 4 5 COMMON_PATH=../common … … 16 17 17 18 copy: 18 ifdef UTT_LIB_DIR19 cp -r perl $(UTT_LIB_DIR)/20 endif19 #ifdef UTT_LIB_DIR 20 # cp -r perl $(UTT_LIB_DIR)/ 21 #endif -
app/src/mar/Makefile
r25ae32e r8d3e6ab 5 5 cp mar ${UTT_BIN_DIR} 6 6 endif 7 8 clean: -
app/src/rm12/Makefile
r25ae32e r8d3e6ab 5 5 cp rm12 ${UTT_BIN_DIR} 6 6 endif 7 8 clean: -
app/src/rs12/Makefile
r25ae32e r8d3e6ab 1 PAR = -m32 2 # -static 3 1 4 main: rs12 2 5 3 6 rs12: rs12.c 4 gcc -static-o rs12 rs12.c7 gcc $(PAR) -o rs12 rs12.c 5 8 6 9 clean: -
app/src/sen-l/Makefile
r25ae32e r8d3e6ab 1 2 1 3 2 sen: sen.l … … 12 11 clean: 13 12 rm sen.c sen 14 15 uninstall: -
app/src/ser/Makefile
r25ae32e r8d3e6ab 8 8 9 9 clean: 10 11 uninstall: -
app/src/tags/Makefile
r25ae32e r8d3e6ab 2 2 3 3 copy: 4 ifdef UTT_ TAGS_DIR5 cp *.tag2re ${UTT_ TAGS_DIR}4 ifdef UTT_BIN_DIR 5 cp *.tag2re ${UTT_BIN_DIR} 6 6 endif 7 7 -
app/src/tok.l/Makefile
r25ae32e r8d3e6ab 1 PAR=-O3 -static 1 PAR=-O3 -m32 2 #-static 2 3 3 4 tok: tok.c cmdline.c -
app/src/unfla/Makefile
r25ae32e r8d3e6ab 5 5 cp unfla ${UTT_BIN_DIR} 6 6 endif 7 8 clean:
Note: See TracChangeset
for help on using the changeset viewer.