- Timestamp:
- 04/22/08 21:11:12 (17 years ago)
- Branches:
- master, help
- Children:
- cfed5c1
- Parents:
- b6109b9
- git-author:
- pawelk <pawelk@…> (04/22/08 21:11:12)
- git-committer:
- pawelk <pawelk@…> (04/22/08 21:11:12)
- Location:
- app
- Files:
-
- 1 deleted
- 3 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
app/dist/common/utt_make_config.pl
rac7d970 rff0fc99 21 21 conf_lem(catfile($usr_home, 'lem.conf'), $sys_home); 22 22 conf_ser(catfile($usr_home, 'ser.conf'), $sys_home); 23 conf_dgc(catfile($usr_home, 'dgc.conf'), $sys_home); 23 24 24 25 print "UTT user configuration created in $usr_home\n"; … … 214 215 return $best_locale; 215 216 } 217 218 sub conf_dgc() { 219 my $dgc_file = shift; 220 my $utthome = shift; 221 open(FILE, ">$dgc_file"); 222 223 print FILE makeConfigHeader(); 224 print FILE "categories=", abs_path("$utthome/lib/utt/cats.dgc"), "\n"; 225 print FILE "grammar=", abs_path("$utthome/lib/utt/gram.dgc"), "\n"; 226 227 close FILE; 228 229 230 open(FILE, ">$utthome/bin/Makefile.go"); 231 print FILE "\ngram.dgp: ", abs_path("$utthome/lib/utt/gram.dgc"), "\n"; 232 print FILE "\tdgc -c ", abs_path("$utthome/lib/utt/cats.dgc"), " < ", abs_path("$utthome/lib/utt/gram.dgc"), " > gram.dgp\n"; 233 close FILE; 234 235 } 236 -
app/dist/struktura.txt
rac7d970 rff0fc99 1 1 /usr/local/bin/aut2fsa 2 /usr/local/bin/canonize 2 3 /usr/local/bin/compiledic 3 4 /usr/local/bin/con 4 5 /usr/local/bin/cor 6 /usr/local/bin/dgc 7 /usr/local/bin/dgp 5 8 /usr/local/bin/fla 6 9 /usr/local/bin/fsm2aut 10 /usr/local/bin/go ? 11 /usr/local/bin/Makefile.go ? 12 /usr/local/bin/attr.pm 13 /usr/local/bin/gph 7 14 /usr/local/bin/grp 8 15 /usr/local/bin/gue … … 14 21 /usr/local/bin/ser 15 22 /usr/local/bin/tok 23 /usr/local/bin/tre.rb 16 24 /usr/local/bin/unfla 17 25 /usr/local/bin/utt-make-config.pl … … 21 29 /usr/local/etc/utt/con.conf 22 30 /usr/local/etc/utt/cor.conf 31 /usr/local/etc/utt/dgc.conf 23 32 /usr/local/etc/utt/fla.conf 24 33 /usr/local/etc/utt/grp.conf … … 45 54 /usr/local/lib/utt/terms.m4 46 55 /usr/local/lib/utt/weights.cor 56 /usr/local/lib/utt/seg.rb 57 /usr/local/lib/utt/cats.dgc 58 /usr/local/lib/utt/gram.dgc 47 59 48 60 /usr/local/share/doc/utt/FAQ -
app/src/dgp/Makefile
rb6109b9 rff0fc99 2 2 3 3 SHELL = /bin/sh 4 LIB_PATH=../../lib 4 5 5 6 #vpath %.o . … … 40 41 copy: 41 42 ifdef UTT_BIN_DIR 42 cp dgp dgc canonize $(UTT_BIN_DIR) 43 cp dgp dgc canonize tre.rb $(UTT_BIN_DIR)/ 44 cp go attr.pm $(UTT_BIN_DIR)/ 45 cp $(LIB_PATH)/*.dgc $(UTT_BIN_DIR)/../lib/utt/ 43 46 endif
Note: See TracChangeset
for help on using the changeset viewer.