diff --git a/Makefile b/Makefile
index ffbcf9faf82b75750eebbeed58218fadaf8cf741..0f4caaeac024b243de3a80445b314262beac6b13 100644
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@ CXXFLAGS = -Wall -O2
 LDLIBS = -lm
 SRC = $(wildcard ./sources/*.cpp)
 OBJ = $(SRC:.c=.o)
-TARGET = main
+TARGET = biblioteca
 
 all: $(TARGET)
 
diff --git a/main.cpp b/biblioteca.cpp
similarity index 84%
rename from main.cpp
rename to biblioteca.cpp
index 1c47e8820aff802f092261267bdc146d3d6222c0..8c4203051001a8827d85571849c6dff08ca5fe85 100644
--- a/main.cpp
+++ b/biblioteca.cpp
@@ -63,31 +63,6 @@ int show_options() {
 }
 
 
-//int show_options () {
-//  int option;
-//  while (true) {
-//    cout << endl;
-//    cout << "> Entre com um comando:" << endl;
-//    cout << "1 - Cadastrar usuario           " << endl;
-//    cout << "2 - Listar usuarios             " << endl;
-//    cout << "3 - Listar multas de um usuario " << endl;
-//    cout << "4 - Pagar multas de um usuario  " << endl;
-//    cout << "5 - Adicionar uma Obra          " << endl;
-//    cout << "6 - Listar Obras                " << endl;
-//    cout << "7 - Pesquisar Obra              " << endl;
-//    cout << "8 - Emprestar Obra              " << endl;
-//    cout << "9 - Devolver Obra               " << endl;
-//    cout << "10 - Finalizar programa         " << endl;
-//    cout << "-> ";
-//    cin >> option;
-//    if (option >= 1 && option <= 10)
-//      break;
-//  }
-//
-//  return option;
-//}
-
-
 int main(){
   system("clear");
 
diff --git a/main b/main
deleted file mode 100755
index d32b3c90d9ee0db0d622a7dbaea0452a0698ac21..0000000000000000000000000000000000000000
Binary files a/main and /dev/null differ