| VERSION=$(shell node --eval "console.log(require('./package.json').version)")BUNDLE=dist/exif-parser-$(VERSION).jsMIN_BUNDLE=dist/exif-parser-$(VERSION)-min.jsBROWSERIFY=node_modules/.bin/browserifyUGLIFY=node_modules/.bin/uglifyjsbuild-browser-bundle: setup	@echo "building $(BUNDLE) ..."	@mkdir -p dist/	@$(BROWSERIFY) --bare browser-global.js -o $(BUNDLE)	@echo "building $(MIN_BUNDLE) ..."	@$(UGLIFY) $(BUNDLE) -o $(MIN_BUNDLE) --compresssetup:	@npm install --no-optional --loglevel error --developmentclean:	@rm -rf dist/
 |