diff --git a/CUI.cpp b/ConsoleUI/CUI.cpp similarity index 100% rename from CUI.cpp rename to ConsoleUI/CUI.cpp diff --git a/CUI.h b/ConsoleUI/CUI.h similarity index 100% rename from CUI.h rename to ConsoleUI/CUI.h diff --git a/ColorUI.cpp b/ConsoleUI/ColorUI.cpp similarity index 100% rename from ColorUI.cpp rename to ConsoleUI/ColorUI.cpp diff --git a/ColorUI.h b/ConsoleUI/ColorUI.h similarity index 100% rename from ColorUI.h rename to ConsoleUI/ColorUI.h diff --git a/makefile b/makefile new file mode 100644 index 0000000..9a82c60 --- /dev/null +++ b/makefile @@ -0,0 +1,10 @@ +CXXFLAGS = -std=c++14 -Wall -O2 + +lib: + $(CXX) $(CXXFLAGS) CUI.cpp -o CUI.o + $(CXX) $(CXXFLAGS) ColorUI.cpp -o ColorUI.o +test: + $(CXX) $(CXXFLAGS) example.cpp -o test.exe + test.exe +clean: + rm -f CUI.o ColorUI.o test.exe \ No newline at end of file