adds initial version of lwc
This commit is contained in:
36
lwc/Makefile
Normal file
36
lwc/Makefile
Normal file
@@ -0,0 +1,36 @@
|
||||
# Copyright (C) 2021 SCARV project <info@scarv.org>
|
||||
#
|
||||
# Use of this source code is restricted per the MIT license, a copy of which
|
||||
# can be found at https://opensource.org/licenses/MIT (or should be included
|
||||
# as LICENSE.txt within the associated archive or repository).
|
||||
|
||||
export REPO_HOME = ${PWD}
|
||||
|
||||
# =============================================================================
|
||||
|
||||
export ALG ?= ascon
|
||||
|
||||
export API ?= aead
|
||||
export ARCH ?= generic
|
||||
export IMP ?= nist
|
||||
export ISE ?= xalu
|
||||
|
||||
export CONF ?=
|
||||
|
||||
# -----------------------------------------------------------------------------
|
||||
|
||||
sw-build :
|
||||
@make --directory="${REPO_HOME}/src" build
|
||||
sw-run :
|
||||
@make --directory="${REPO_HOME}/src" run
|
||||
sw-scan :
|
||||
@make --directory="${REPO_HOME}/src" scan
|
||||
sw-clean :
|
||||
@make --directory="${REPO_HOME}/src" clean
|
||||
|
||||
# -----------------------------------------------------------------------------
|
||||
|
||||
clean :
|
||||
@rm --force --recursive ${REPO_HOME}/build/*
|
||||
|
||||
# =============================================================================
|
Reference in New Issue
Block a user