## ## DSIG -- Digital Signature with OpenPGP ## Copyright (c) 2015-2022 Dr. Ralf S. Engelschall ## Licensed under LGPL 3.0 ## 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