Skip to content

Commit

Permalink
Merge pull request #1 from i5ting/master
Browse files Browse the repository at this point in the history
Makefile (for compiling example) added
  • Loading branch information
misje committed Mar 20, 2014
2 parents ea2c4f4 + 915458b commit e68077c
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -3,3 +3,4 @@
tags
cscope.out
doc/output
bin
11 changes: 11 additions & 0 deletions Makefile
@@ -0,0 +1,11 @@
default: clean dist run

dist:
mkdir bin/
gcc -std=c99 -I src src/stateMachine.c examples/stateMachineExample.c -o bin/example

run:
./bin/example

clean:
rm -rf bin

0 comments on commit e68077c

Please sign in to comment.