dsig
Version:
Digital Signature with OpenPGP
27 lines (18 loc) • 443 B
Plain Text
##
## DSIG -- Digital Signature with OpenPGP
## Copyright (c) 2015-2022 Dr. Ralf S. Engelschall <rse@engelschall.com>
## Licensed under LGPL 3.0 <https://spdx.org/licenses/LGPL-3.0-only>
##
NPM = npm
DSIG = node src/dsig-cli.js
all: build
bootstrap:
@if [ ! -d node_modules ]; then $(NPM) install; fi
build: bootstrap
@$(NPM) run build
clean: bootstrap
@$(NPM) run clean
distclean: clean
-rm -rf node_modules
test:
-sh test.sh