From 400bece1842945c059cb7b81814549097cdea08e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20P=C3=A9ron?= Date: Wed, 19 Dec 2018 17:02:02 +0100 Subject: [PATCH] move src_genericwallet to src This will avoid an error with glyph.h which is not found when compiling deps. Due to INCLUDE_PATH is looking for *.h but the glyph.h doesn't exist at this moment --- Makefile | 2 +- {src_genericwallet => src}/chainConfig.h | 0 {src_genericwallet => src}/main.c | 0 {src_genericwallet => src}/tokens.c | 0 {src_genericwallet => src}/tokens.h | 0 5 files changed, 1 insertion(+), 1 deletion(-) rename {src_genericwallet => src}/chainConfig.h (100%) rename {src_genericwallet => src}/main.c (100%) rename {src_genericwallet => src}/tokens.c (100%) rename {src_genericwallet => src}/tokens.h (100%) diff --git a/Makefile b/Makefile index a6f294c..d078c09 100755 --- a/Makefile +++ b/Makefile @@ -199,7 +199,7 @@ LDLIBS += -lm -lgcc -lc include $(BOLOS_SDK)/Makefile.glyphs ### variables processed by the common makefile.rules of the SDK to grab source files and include dirs -APP_SOURCE_PATH += src_genericwallet src_common src +APP_SOURCE_PATH += src_common src SDK_SOURCE_PATH += lib_stusb lib_stusb_impl lib_u2f load: all diff --git a/src_genericwallet/chainConfig.h b/src/chainConfig.h similarity index 100% rename from src_genericwallet/chainConfig.h rename to src/chainConfig.h diff --git a/src_genericwallet/main.c b/src/main.c similarity index 100% rename from src_genericwallet/main.c rename to src/main.c diff --git a/src_genericwallet/tokens.c b/src/tokens.c similarity index 100% rename from src_genericwallet/tokens.c rename to src/tokens.c diff --git a/src_genericwallet/tokens.h b/src/tokens.h similarity index 100% rename from src_genericwallet/tokens.h rename to src/tokens.h