Skip to content

Commit

Permalink
Feature: basis
Browse files Browse the repository at this point in the history
  • Loading branch information
mkostoevr committed Apr 19, 2020
0 parents commit 1ed6882
Show file tree
Hide file tree
Showing 16 changed files with 19,421 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
*.o
*.kex
*.exe
5 changes: 5 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"files.associations": {
"stdio.h": "c"
}
}
9 changes: 9 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
.PHONY: debug release

debug:
tcc src/main.c -Iinclude -DONE_SOURCE -Wall -Wextra -Werror -o obfmc.exe
obfmc test/hello-world.b

release:
clang src/main.c -Iinclude -DONE_SOURCE -Wall -Wextra -o obfmc.exe
obfmc test/hello-world.b
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Optimizing BrainFuck MultiCompiler

Loading

0 comments on commit 1ed6882

Please sign in to comment.