Here is what I've got so far:
SPECS = $(shell find spec -iname "*_spec.js")
spec:
@NODE_ENV=test
@NODE_PATH=lib
./node_modules/.bin/expresso
$(TESTFLAGS)
$(SPECS)
cov:
@TESTFLAGS=--cov $(MAKE) spec
.PHONY: spec cov
Output: /bin/sh: @NODE_PATH=lib: command not found
If I set one variable only it's working fine. What am I doing wrong?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…