| 12345678910111213141516171819202122232425 | PACKAGE = asyncjsNODEJS = $(if $(shell test -f /usr/bin/nodejs && echo "true"),nodejs,node)CWD := $(shell pwd)NODEUNIT = $(CWD)/node_modules/nodeunit/bin/nodeunitUGLIFY = $(CWD)/node_modules/uglify-js/bin/uglifyjsNODELINT = $(CWD)/node_modules/nodelint/nodelintBUILDDIR = distall: clean test buildbuild: $(wildcard  lib/*.js)	mkdir -p $(BUILDDIR)	$(UGLIFY) lib/async.js > $(BUILDDIR)/async.min.jstest:	$(NODEUNIT) testclean:	rm -rf $(BUILDDIR)lint:	$(NODELINT) --config nodelint.cfg lib/async.js.PHONY: test build all
 |