Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(140)

Side by Side Diff: third_party/flot/Makefile

Issue 1235773002: Add jquery and flot to catapult/third_party. (Closed) Base URL: git@github.com:catapult-project/catapult.git@master
Patch Set: Rebased Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « third_party/flot/LICENSE.txt ('k') | third_party/flot/NEWS.md » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Makefile for generating minified files
2
3 .PHONY: all
4
5 # we cheat and process all .js files instead of an exhaustive list
6 all: $(patsubst %.js,%.min.js,$(filter-out %.min.js,$(wildcard *.js)))
7
8 %.min.js: %.js
9 yui-compressor $< -o $@
10
11 test:
12 ./node_modules/.bin/jshint *jquery.flot.js
OLDNEW
« no previous file with comments | « third_party/flot/LICENSE.txt ('k') | third_party/flot/NEWS.md » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698