4
Makefile에서 자식 프로세스의 환경 변수를 설정하는 방법
이 Makefile을 변경하고 싶습니다. SHELL := /bin/bash PATH := node_modules/.bin:$(PATH) boot: @supervisor \ --harmony \ --watch etc,lib \ --extensions js,json \ --no-restart-on error \ lib test: NODE_ENV=test mocha \ --harmony \ --reporter spec \ test clean: @rm -rf node_modules .PHONY: test clean 에: SHELL := /bin/bash PATH := node_modules/.bin:$(PATH) boot: …