Переглянути джерело

Rename App/config.* to App/appconfig.*

Ian Goldberg 1 рік тому
батько
коміт
d17365c8ea
6 змінених файлів з 8 додано та 8 видалено
  1. 1 1
      App/appconfig.cpp
  2. 0 0
      App/appconfig.hpp
  3. 0 1
      App/net.cpp
  4. 1 1
      App/net.hpp
  5. 1 1
      App/teems.cpp
  6. 5 4
      Makefile

+ 1 - 1
App/config.cpp → App/appconfig.cpp

@@ -1,5 +1,5 @@
 #include <iostream>
-#include "config.hpp"
+#include "appconfig.hpp"
 
 // The next line suppresses a deprecation warning within boost
 #define BOOST_BIND_GLOBAL_PLACEHOLDERS

+ 0 - 0
App/config.hpp → App/appconfig.hpp


+ 0 - 1
App/net.cpp

@@ -1,6 +1,5 @@
 #include <iostream>
 
-#include "config.hpp"
 #include "net.hpp"
 
 // The command type byte values

+ 1 - 1
App/net.hpp

@@ -9,7 +9,7 @@
 #include <boost/asio.hpp>
 #include <boost/thread.hpp>
 
-#include "config.hpp"
+#include "appconfig.hpp"
 
 #define MAXCHUNKSIZE (65536+16)
 

+ 1 - 1
App/teems.cpp

@@ -9,7 +9,7 @@
 #include "sgx_tcrypto.h"
 #include "sgx_tseal.h"
 #include "Untrusted.hpp"
-#include "config.hpp"
+#include "appconfig.hpp"
 #include "net.hpp"
 #include "start.hpp"
 

+ 5 - 4
Makefile

@@ -282,10 +282,11 @@ depend:
 
 # DO NOT DELETE
 
-App/config.o: App/config.hpp
-App/net.o: App/config.hpp App/net.hpp
-App/start.o: App/start.hpp App/net.hpp App/config.hpp
-App/teems.o: Untrusted/Untrusted.hpp App/config.hpp App/net.hpp App/start.hpp
+App/appconfig.o: App/appconfig.hpp
+App/net.o: App/net.hpp App/appconfig.hpp
+App/start.o: App/start.hpp App/net.hpp App/appconfig.hpp
+App/teems.o: Untrusted/Untrusted.hpp App/appconfig.hpp App/net.hpp
+App/teems.o: App/start.hpp
 Untrusted/Untrusted.o: Untrusted/Untrusted.hpp Untrusted/Enclave_u.h
 
 Enclave/comms.o: Enclave/Enclave_t.h Enclave/utils.hpp