Last active
August 29, 2015 14:03
-
-
Save deltheil/3c232264a6392ec621bc to your computer and use it in GitHub Desktop.
cfsm - Finite State Machine compiler
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ------- | |
# cfsm | |
# ------- | |
# see: http://www.mindrot.org/projects/cfsm/ | |
# Build (tested on Mac OS X 10.9.3) | |
cvs -d :ext:[email protected]:/cvs checkout cfsm mtemplate | |
make -C mtemplate | |
make -C cfsm CPPFLAGS='-D_FORTIFY_SOURCE=0' | |
mkdir /usr/local/share/cfsm | |
cp cfsm/*.m /usr/local/share/cfsm/ | |
# Quick demo (requirement: `brew install graphviz`) | |
./cfsm/cfsm -g cfsm/example.fsm | |
dot -Tpng fsm.dot | open -f -a Preview |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment