Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2022-03-21 04:37:42 +03:00
parent 369c00e1c1
commit 1ce773fb93

View File

@ -163,20 +163,6 @@
SHELL := bash SHELL := bash
# set path to use local tools...
# NOTE this does not affect where make is seraching for commands...
# XXX this breaks which when looking for egrep/fgrep...
#export PATH := $(shell pwd)/node_modules/.bin/:$(PATH)
# Warn user...
#
# This is mainly due to npx needing to cache things...
IGNORE := $(if $(filter node_modules,$(wildcard *)),, \
$(info Missing ./node_modules/: Running make on a clean repository \
may take some time... ))
# variables... # variables...
@ -199,6 +185,12 @@ COMMIT := $(strip $(shell git rev-parse HEAD))
NPX := npx --yes NPX := npx --yes
# Warn user...
IGNORE := $(if $(filter node_modules,$(wildcard *)),, \
$(info Missing ./node_modules/: Running make on a clean repository \
may take some time... ))
# less... # less...
# #
LESSC := $(NPX) lessc LESSC := $(NPX) lessc