All Downloads are FREE. Search and download functionalities are using the official Maven repository.

res.lib.flot.Makefile Maven / Gradle / Ivy

There is a newer version: 1.0.18
Show newest version
# Makefile for generating minified files

.PHONY: all

# we cheat and process all .js files instead of an exhaustive list
all: $(patsubst %.js,%.min.js,$(filter-out %.min.js,$(wildcard *.js)))

%.min.js: %.js
	yui-compressor $< -o $@

test:
	./node_modules/.bin/jshint *jquery.flot.js




© 2015 - 2024 Weber Informatics LLC | Privacy Policy