Browse Source

Rename binary from app to teems

Ian Goldberg 1 year ago
parent
commit
976c417ae7
2 changed files with 2 additions and 2 deletions
  1. 0 0
      App/teems.cpp
  2. 2 2
      Makefile

+ 0 - 0
App/App.cpp → App/teems.cpp


+ 2 - 2
Makefile

@@ -83,7 +83,7 @@ else
 	Urts_Library_Name := sgx_urts
 endif
 
-App_Cpp_Files := App/App.cpp $(wildcard Untrusted/*.cpp)
+App_Cpp_Files := $(wildcard App/*.cpp Untrusted/*.cpp)
 App_Include_Paths := -IApp -IUntrusted -I$(SGX_SDK)/include
 
 App_C_Flags := -fPIC -Wno-attributes $(App_Include_Paths)
@@ -105,7 +105,7 @@ App_Link_Flags := -L$(SGX_LIBRARY_PATH) -l$(Urts_Library_Name) -lpthread
 
 App_Cpp_Objects := $(App_Cpp_Files:.cpp=.o)
 
-App_Name := App/app
+App_Name := App/teems
 
 ######## Enclave Settings ########