## ## Tokenizr -- String Tokenization Library ## Copyright (c) 2015-2025 Dr. Ralf S. Engelschall ## Licensed under MIT license ## NPM = npm all: build bootstrap: @if [ ! -d node_modules ]; then $(NPM) install; fi lint: bootstrap @$(NPM) start lint build: bootstrap @$(NPM) start build test: bootstrap @$(NPM) start test clean: bootstrap @$(NPM) start clean distclean: bootstrap @$(NPM) start distclean