diff --git a/clean.sh b/clean.sh new file mode 100755 index 0000000..f466c62 --- /dev/null +++ b/clean.sh @@ -0,0 +1,5 @@ +#!/bin/bash + +rm -f brb +rm -f *.o +rm -rf *.dSYM \ No newline at end of file diff --git a/make.sh b/make.sh index 8d241b8..37c25dc 100755 --- a/make.sh +++ b/make.sh @@ -1,3 +1,3 @@ #!/bin/bash -cc -g -std=c++17 -lc++ *.cpp -o brb \ No newline at end of file +cc -g -std=c++17 -lc++ src/*.cpp -o brb \ No newline at end of file diff --git a/Lexer.cpp b/src/Lexer.cpp similarity index 100% rename from Lexer.cpp rename to src/Lexer.cpp diff --git a/Lexer.h b/src/Lexer.h similarity index 100% rename from Lexer.h rename to src/Lexer.h diff --git a/Token.cpp b/src/Token.cpp similarity index 100% rename from Token.cpp rename to src/Token.cpp diff --git a/Token.h b/src/Token.h similarity index 100% rename from Token.h rename to src/Token.h diff --git a/main.cpp b/src/main.cpp similarity index 100% rename from main.cpp rename to src/main.cpp