diff options
Diffstat (limited to '')
| -rw-r--r-- | Buildfile | 31 | ||||
| -rw-r--r-- | congo | 16 | ||||
| -rw-r--r-- | src/lexer.flex | 13 |
3 files changed, 60 insertions, 0 deletions
diff --git a/Buildfile b/Buildfile new file mode 100644 index 0000000..2732847 --- /dev/null +++ b/Buildfile | |||
| @@ -0,0 +1,31 @@ | |||
| 1 | // Reference Buildfile by Mike Buland | ||
| 2 | // Comments can be C++ style or bash style right now, no C style /* */ | ||
| 3 | |||
| 4 | // Recognized file types will be built using the default programs on each | ||
| 5 | // system, each will get a target and be built with as much dependency tracking | ||
| 6 | // as possible. | ||
| 7 | |||
| 8 | // This is the default target, build with no params will always try to build | ||
| 9 | // the all target, unless your Buildfile specifies something a little more | ||
| 10 | // interesting. Specifying phony as a parameter means that this target builds | ||
| 11 | // every call no matter what. | ||
| 12 | target( all, phony ) | ||
| 13 | { | ||
| 14 | build( build ); | ||
| 15 | } | ||
| 16 | |||
| 17 | target( build ) | ||
| 18 | { | ||
| 19 | type = executable; | ||
| 20 | linker = c++; | ||
| 21 | output = build; | ||
| 22 | |||
| 23 | if( isDebug() == true ) | ||
| 24 | { | ||
| 25 | addParam( CXXFLAGS, "-ggdb") | ||
| 26 | addParam( CFLAGS, "-ggdb") | ||
| 27 | } | ||
| 28 | |||
| 29 | usesDir( src ); | ||
| 30 | } | ||
| 31 | |||
| @@ -0,0 +1,16 @@ | |||
| 1 | |||
| 2 | target( all ) | ||
| 3 | { | ||
| 4 | build( congo ); | ||
| 5 | build( congod ); | ||
| 6 | } | ||
| 7 | |||
| 8 | target( congo ) | ||
| 9 | { | ||
| 10 | type = executable; | ||
| 11 | linker = c++; | ||
| 12 | |||
| 13 | uses( src/congo ); | ||
| 14 | uses( src/congod ); | ||
| 15 | } | ||
| 16 | |||
diff --git a/src/lexer.flex b/src/lexer.flex new file mode 100644 index 0000000..508a50c --- /dev/null +++ b/src/lexer.flex | |||
| @@ -0,0 +1,13 @@ | |||
| 1 | int lineNum = 1; | ||
| 2 | %% | ||
| 3 | |||
| 4 | "="|"("|")"|"{"|"}"|";"|"," return yytext[0]; | ||
| 5 | "==" return TOK_COMPARE; | ||
| 6 | "target" return TOK_TARGET; | ||
| 7 | |||
| 8 | \n ++lineNum; | ||
| 9 | [ \t\r]* | ||
| 10 | |||
| 11 | \/\/.* | ||
| 12 | "#".* | ||
| 13 | |||
