Changeset 8f395c8
- Timestamp:
- 12/14/11 17:53:54 (13 years ago)
- Branches:
- master
- Children:
- 7bed30f
- Parents:
- 93afab8
- git-author:
- tom <tom@…> (12/14/11 17:53:54)
- git-committer:
- tom <tom@…> (12/14/11 17:53:54)
- Location:
- _old/app/src/compdic
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
_old/app/src/compdic/Makefile
r93afab8 r8f395c8 1 CFLAG1 = - m32 -Wno-deprecated -O3 -fpermissive1 CFLAG1 = -Wno-deprecated -O3 -fpermissive 2 2 CFLAG_ST = -Wno-deprecated -O3 -fpermissive -static 3 3 … … 8 8 9 9 aut2fsa: aut2fsa.cc 10 #g++ -m32 -Wno-deprecated -O3 -fpermissive -static -o aut2fsa aut2fsa.cc11 10 g++ $(CFLAG1) -o aut2fsa aut2fsa.cc 12 11 -
_old/app/src/compdic/compdic
r93afab8 r8f395c8 21 21 if [ $# -lt 2 ] 22 22 then 23 echo 24 echo "compdic is a tool to compile lists of automaton paths (words) into the automaton format" 25 echo "suitable for use with lem, gue, cor, and kor components" 26 echo 23 27 echo "Usage:" 24 28 echo " compdic [-p <parts>] <wordlist> <automaton>" 25 29 echo "where" 26 30 echo " <wordlist> - file containig a list of words, one per line, iso-8859-2 encoded" 27 echo " <automaton> - a file to which the compiled automaton ( cor/kor format) shoulbe written"31 echo " <automaton> - a file to which the compiled automaton (lem/gue/cor/kor format) should be written" 28 32 exit 0 29 33 fi
Note: See TracChangeset
for help on using the changeset viewer.