From 7c11a0aee1222d2e546851b85112589f13977a62 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=20Grodzi=C5=84ski?= Date: Wed, 28 May 2025 20:43:06 +0900 Subject: [PATCH] Moved source --- clean.sh | 5 +++++ make.sh | 2 +- Lexer.cpp => src/Lexer.cpp | 0 Lexer.h => src/Lexer.h | 0 Token.cpp => src/Token.cpp | 0 Token.h => src/Token.h | 0 main.cpp => src/main.cpp | 0 7 files changed, 6 insertions(+), 1 deletion(-) create mode 100755 clean.sh rename Lexer.cpp => src/Lexer.cpp (100%) rename Lexer.h => src/Lexer.h (100%) rename Token.cpp => src/Token.cpp (100%) rename Token.h => src/Token.h (100%) rename main.cpp => src/main.cpp (100%) 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