Age | Commit message (Collapse) | Author |
|
|
|
|
|
The names stand for Oreo's Brainfuck Interpreter and Oreo's Brainfuck
Compiler, separate tasks that shouldn't be packaged in one executable.
|
|
RELEASE and DEBUG builds have differing build flags, triggered by
setting RELEASE variable. No longer doing object based compilation
because:
+ gcc is fast enough without it
+ stale code compilation bugs are annoying
+ having one output binary to clean-up is just easier when switching
build-types
|
|
Same principle as main->lib (previous commit).
|
|
lib.(h|c) basically has structures and functions I no longer want to
stare at in main.c
|
|
Simple parser, took like an hour.
Not very smart but at least it's like O(n).
|