-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(row-counter): initial implementaion
- Loading branch information
Showing
26 changed files
with
9,346 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
**/build | ||
**/bin | ||
**/enclave/target | ||
**/app/target | ||
**/app/.python-version | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
enclave/Enclave_private.pem | ||
enclave/Enclave_public.pem |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
# Dummy makefile, will call the host and enclave makefile when requested. | ||
|
||
SRC_U = app/ | ||
SRC_T = enclave/ | ||
|
||
# Compilation process, will call the appropriate makefiles. | ||
|
||
all: host enclave | ||
|
||
host: | ||
@echo "\033[32mRequest to compile the host part...\033[0m" | ||
@make -C $(SRC_U) | ||
|
||
enclave: | ||
@echo "\033[32mRequest to compile the enclave part...\033[0m" | ||
@make -C $(SRC_T) | ||
|
||
clean: | ||
@make -C $(SRC_U) clean | ||
@make -C $(SRC_T) clean | ||
|
||
fclean: | ||
@make -C $(SRC_U) fclean | ||
@make -C $(SRC_T) fclean | ||
|
||
clean_host: | ||
@make -C $(SRC_U) clean | ||
|
||
clean_enclave: | ||
@make -C $(SRC_T) clean | ||
|
||
fclean_host: | ||
@make -C $(SRC_U) fclean | ||
|
||
fclean_enclave: | ||
@make -C $(SRC_T) fclean | ||
|
||
re_host: fclean_host host | ||
|
||
re_enclave: fclean_enclave enclave | ||
|
||
re: fclean all | ||
|
||
# Dummy rules to let make know that those rules are not files. | ||
|
||
.PHONY: host enclave clean clean_host clean_enclave fclean_host fclean_enclave fclean re re_host re_enclave |
Oops, something went wrong.